- Use Exceptions as the standard way for a script to report execution failure:
- CONVENTION: ValueError is used to report what failure occured
- CONVENTION: SystemError is used to halt all subsequent script execution.
- Exceptions should be handled at the top level script run function.
Overview
Content Tools