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):
Common base class for all non-exit exceptions.
Raised when XE response occurs
Raised when an AEA response occurs.
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):
Common base class for all non-exit exceptions.
28class RNIError(NOPException): 29 """NOP exception. 30 RNI: Register not implemented.""" 31 32 pass
NOP exception. RNI: Register not implemented.
35class RNWError(NOPException): 36 """NOP exception. 37 RNW: Register not writeable. 38 """ 39 40 pass
NOP exception. RNW: Register not writeable.
43class RVEError(NOPException): 44 """NOP Exception 45 RVE: Register value range error. 46 """ 47 48 pass
NOP Exception RVE: Register value range error.
Common base class for all non-exit exceptions.
Common base class for all non-exit exceptions.
Common base class for all non-exit exceptions.
Common base class for all non-exit exceptions.
Common base class for all non-exit exceptions.
Common base class for all non-exit exceptions.
Common base class for all non-exit exceptions.
Common base class for all non-exit exceptions.