exceptions.py 216B

123456789101112
  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. """