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

Development Tools Using PHP with MySQL Connecting PHP to MySQL Handling Exceptions

Are try blocks ONLY used for connections? I've seen it used in a java program before for the same exact reason.

Are try blocks ONLY used for connections? I've seen it used in a java program before for the same exact reason but never for anything else. How does it know what it is looking for that works or fails if it is not only for connections?

1 Answer

Andrew McCormick
Andrew McCormick
17,730 Points

they are used any time you are worried that a function you are calling might produce an error. Where as a standard error will typically break your program. If you use a try/catch then you can catch the error and handle it gracefully to allow your program to continue in a different manner or let your user know what the error is and why the program is stopping.