exceptions.py 369 B

123456789101112131415161718
  1. #!/usr/bin/env python
  2. # __author__ = "Ronie Martinez"
  3. # __copyright__ = "Copyright 2018-2019, Ronie Martinez"
  4. # __credits__ = ["Ronie Martinez"]
  5. # __maintainer__ = "Ronie Martinez"
  6. # __email__ = "ronmarti18@gmail.com"
  7. class EmptyGroupError(Exception):
  8. pass
  9. class NumeratorNotFoundError(Exception):
  10. pass
  11. class DenominatorNotFoundError(Exception):
  12. pass