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 trial

PHP Throwing Exceptions

Ker Sing Tan
Ker Sing Tan
10,573 Points

error_reporting(1);

From the tutorial Alena use error_reporting(1); to only show Fatal error. But I purposely make a syntax error and the screen show Parse error instead of hide the Parse error.

error_reporting(1);

if (!$file = fopen("profile.txt", "r")) { throw new Exception("Unable to access file") }

echo "end of file";

Screen: Parse error: syntax error, unexpected '}' in D:\XAMPP\htdocs\kersing\class\render.php on line 10

There needs to be a semi-colon in the code block where you throw your exception: throw new Exception("Unable to access file");