Python Language Exceptions: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 10: Line 10:
   # execute if the previous block caused an error
   # execute if the previous block caused an error
</syntaxhighlight>
</syntaxhighlight>
To trigger an exception manually in the code use <code>raise</code>

Revision as of 23:20, 20 January 2022

Internal

Overview

try/except is a language-level mechanism to handle errors (traceback) that may be caused by a section of the code. This syntax eliminates tracebacks.

try:
  # do something
except:
  # execute if the previous block caused an error

To trigger an exception manually in the code use raise