Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Mike Smith
3,588 PointsWhat am I doing wrong?
When doing the second part of this challenge, I seem to be getting an error but everything i do looks right.
The error im seeing is "Bummer! It looks like there is no Exception class"
<?php
//Place your code below this comment
try {
$db = new PDO('sqlite::memory');
} catch ( Exception $e ) {
echo $e->getMessage();
die();
}
?>
1 Answer

Robert Richey
Courses Plus Student 16,352 PointsHi Mike,
The challenge is just being picky and doesn't want any code within the catch code block. Deleting the echo
and die
statements will pass.

Mike Smith
3,588 PointsWhat a pain that was! Feel like an idiot, the solution was so simple. Thanks Robert!
Mike Smith
3,588 PointsMike Smith
3,588 PointsHeres the challenge Wrap our $db object in a try catch block. Then set up the catch statement to look for any Exception class and pass it to an object named $e"