1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
"""Tado exceptions."""
class TadoException(Exception):
"""Base exception class for Tado."""
class TadoNotSupportedException(TadoException):
"""Exception to indicate a requested action is not supported by Tado."""
class TadoCredentialsException(TadoException):
"""Exception to indicate something with credentials"""
class TadoNoCredentialsException(TadoCredentialsException):
"""Exception to indicate missing credentials"""
class TadoWrongCredentialsException(TadoCredentialsException):
"""Exception to indicate wrong credentials"""
|