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
/except
construct. - raise
- To cause an exception by using the
raise
statement.
try
/ except
construct.raise
statement.