itla.itla_errors

 1class StatusException(Exception):
 2    pass
 3
 4
 5class ExecutionError(StatusException):
 6    """Raised when XE response occurs"""
 7
 8    pass
 9
10
11class AEAException(StatusException):
12    """Raised when an AEA response occurs."""
13
14    pass
15
16
17class CPException(StatusException):
18    """raised when a command pending response occurs"""
19
20    pass
21
22
23class NOPException(Exception):
24    pass
25
26
27class RNIError(NOPException):
28    """NOP exception.
29    RNI: Register not implemented."""
30
31    pass
32
33
34class RNWError(NOPException):
35    """NOP exception.
36    RNW: Register not writeable.
37    """
38
39    pass
40
41
42class RVEError(NOPException):
43    """NOP Exception
44    RVE: Register value range error.
45    """
46
47    pass
48
49
50class CIPError(NOPException):
51    pass
52
53
54class CIIError(NOPException):
55    pass
56
57
58class EREError(NOPException):
59    pass
60
61
62class EROError(NOPException):
63    pass
64
65
66class EXFError(NOPException):
67    pass
68
69
70class CIEError(NOPException):
71    pass
72
73
74class IVCError(NOPException):
75    pass
76
77
78class VSEError(NOPException):
79    pass
class StatusException(builtins.Exception):
2class StatusException(Exception):
3    pass

Common base class for all non-exit exceptions.

class ExecutionError(StatusException):
6class ExecutionError(StatusException):
7    """Raised when XE response occurs"""
8
9    pass

Raised when XE response occurs

class AEAException(StatusException):
12class AEAException(StatusException):
13    """Raised when an AEA response occurs."""
14
15    pass

Raised when an AEA response occurs.

class CPException(StatusException):
18class CPException(StatusException):
19    """raised when a command pending response occurs"""
20
21    pass

raised when a command pending response occurs

class NOPException(builtins.Exception):
24class NOPException(Exception):
25    pass

Common base class for all non-exit exceptions.

class RNIError(NOPException):
28class RNIError(NOPException):
29    """NOP exception.
30    RNI: Register not implemented."""
31
32    pass

NOP exception. RNI: Register not implemented.

class RNWError(NOPException):
35class RNWError(NOPException):
36    """NOP exception.
37    RNW: Register not writeable.
38    """
39
40    pass

NOP exception. RNW: Register not writeable.

class RVEError(NOPException):
43class RVEError(NOPException):
44    """NOP Exception
45    RVE: Register value range error.
46    """
47
48    pass

NOP Exception RVE: Register value range error.

class CIPError(NOPException):
51class CIPError(NOPException):
52    pass

Common base class for all non-exit exceptions.

class CIIError(NOPException):
55class CIIError(NOPException):
56    pass

Common base class for all non-exit exceptions.

class EREError(NOPException):
59class EREError(NOPException):
60    pass

Common base class for all non-exit exceptions.

class EROError(NOPException):
63class EROError(NOPException):
64    pass

Common base class for all non-exit exceptions.

class EXFError(NOPException):
67class EXFError(NOPException):
68    pass

Common base class for all non-exit exceptions.

class CIEError(NOPException):
71class CIEError(NOPException):
72    pass

Common base class for all non-exit exceptions.

class IVCError(NOPException):
75class IVCError(NOPException):
76    pass

Common base class for all non-exit exceptions.

class VSEError(NOPException):
79class VSEError(NOPException):
80    pass

Common base class for all non-exit exceptions.