You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
257 B

  1. """Exceptions"""
  2. class NilmDBError(Exception):
  3. """Base exception for NilmDB errors"""
  4. def __init__(self, msg = "Unspecified error"):
  5. super().__init__(msg)
  6. class StreamError(NilmDBError):
  7. pass
  8. class OverlapError(NilmDBError):
  9. pass