error.py 420 B

12345678910111213141516171819
  1. # greaseweazle/error.py
  2. #
  3. # Error management and reporting.
  4. #
  5. # Written & released by Keir Fraser <keir.xen@gmail.com>
  6. #
  7. # This is free and unencumbered software released into the public domain.
  8. # See the file COPYING for more details, or visit <http://unlicense.org>.
  9. class Fatal(Exception):
  10. pass
  11. def check(pred, desc):
  12. if not pred:
  13. raise Fatal(desc)
  14. # Local variables:
  15. # python-indent: 4
  16. # End: