File: exceptions.py

package info (click to toggle)
python-tado 0.19.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 720 kB
  • sloc: python: 2,671; sh: 29; makefile: 3
file content (21 lines) | stat: -rw-r--r-- 562 bytes parent folder | download
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"""