File: exception.py

package info (click to toggle)
python-bellows 0.40.5-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 996 kB
  • sloc: python: 13,630; sh: 7; makefile: 5
file content (17 lines) | stat: -rw-r--r-- 258 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from zigpy.exceptions import APIException, ControllerException


class EzspError(APIException):
    pass


class InvalidCommandError(EzspError):
    pass


class ControllerError(ControllerException):
    pass


class StackAlreadyRunning(EzspError):
    pass