You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

  • 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.


  • No labels