* Stage 1 * Finish restructuring, add checkboxes. * Minor format fixes * fixing broken link * fixing broken link * fixing README link * Fix multiples bad links * Fix links in reference/concepts/keywords/README.md * Correcting list description
354 B
354 B
Exception catching
TODO: ADD MORE
Exceptionscan be caught from outside the scope where they are raised, using thetry/exceptsyntax. AllExceptionstypes inherit from the base class,Exceptionand thus can be caught by either checking specifically for the type of Exception, or for any Exception hamming