exceptions.py 273B

12345678910111213141516
  1. # coding: utf-8
  2. class SynergineException(Exception):
  3. pass
  4. class NotYetImplemented(SynergineException):
  5. """
  6. Like of NotImplementError. Use it to declare method to implement but only if wanted.
  7. """
  8. class ConfigurationError(SynergineException):
  9. pass