The catch-all handler, written catch(...)
in C++, or @catch(...)
in Objective-C, catches every type of exception. If
there is another catch statement for a specific exception after the catch-all handler, it will not be executed because the catch-all handler will
already have handled the exception.