Section 13.7 Glossary
Glossary 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.