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.

Alex Weissman
720 PointsWhy do we need to catch and re-throw the error in getJSON?
In purely synchronous programming, there is no point in catching an exception just to re-throw it without doing anything else.
1 Answer

Steven Parker
221,070 PointsThe instructor explains in the video, "The benefit of doing this is that any errors caught here will bubble up and be caught by try catch blocks or catch methods at the top level."
Then, later in the video a code example is provided to show this being used in practice.
JASON LEE
16,036 PointsJASON LEE
16,036 PointsI still don't get it. Even without the try catch in the function getJSON(url), it will have the same behavior, where the error caught will bubble up and be caught by try catch block from the 'parent' function.
Steven Parker
221,070 PointsSteven Parker
221,070 PointsI see what you mean — why not just leave off the "try" completely. Now I'm also questioning the value of having one unless you were planning to add some code later between the "catch" and the "throw".