exceptions.py 329B

1234567891011121314151617181920
  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
  10. class UnknownSharedData(SynergineException):
  11. pass