Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMike Smith
3,596 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,596 PointsWhat a pain that was! Feel like an idiot, the solution was so simple. Thanks Robert!
Mike Smith
3,596 PointsMike Smith
3,596 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"