errors.py 373 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. """
  3. Created on Wed Aug 15 17:33:27 2012
  4. @author: pietro
  5. """
  6. class GrassError(Exception):
  7. def __init__(self, value):
  8. self.value = value
  9. def __str__(self):
  10. return repr(self.value)
  11. class OpenError(Exception):
  12. def __init__(self, value):
  13. self.value = value
  14. def __str__(self):
  15. return repr(self.value)