GlossaryΒΆ
- exception
- An error that occurs at runtime.
- handle an exception
- To prevent an exception from terminating a program by wrapping
the block of code in a
try/exceptconstruct. - raise
- To cause an exception by using the
raisestatement.
try / except construct.raise statement.