egse.exceptions
Exception
├── CGSEException
│ ├── Warning
│ └── Error
│ ├── InvalidOperationError
│ ├── DeviceNotFoundError
│ ├── InternalStateError
│ └── DeviceError
│ ├── DeviceControllerError
│ ├── DeviceConnectionError
│ ├── DeviceTimeoutError
│ └── DeviceInterfaceError
├── Failure
├── HexapodError
├── PMACError
├── OGSEError
├── ESLError
├── FilterWheelError
├── FilterWheel8smc4Error
├── ShutterKSC1010Error
├── WindowSizeError
├── SettingsError
└── StagesError
Classes:
Name | Description |
---|---|
Abort |
Internal Exception to signal a process to abort. |
CGSEException |
The base exception for all errors and warnings in the Common-EGSE. |
DeviceNotFoundError |
Raised when a device could not be located, or loaded. |
Error |
The base class for all Common-EGSE Errors. |
FileIsEmptyError |
Raised when a file is empty and that is unexpected. |
InternalError |
Raised when an internal inconsistency occurred in a function, method or class. |
InternalStateError |
Raised when an object encounters an internal state inconsistency. |
InvalidInputError |
Exception raised when the input is invalid after editing. |
InvalidOperationError |
Raised when a certain operation is not valid in the given state, |
Warning |
The base class for all Common-EGSE Warnings. |
Abort
¶
Bases: RuntimeError
Internal Exception to signal a process to abort.
CGSEException
¶
Bases: Exception
The base exception for all errors and warnings in the Common-EGSE.
Error
¶
Bases: CGSEException
The base class for all Common-EGSE Errors.
InternalError
¶
Bases: Error
Raised when an internal inconsistency occurred in a function, method or class.
InvalidOperationError
¶
Bases: Error
Raised when a certain operation is not valid in the given state, circumstances or environment.
Warning
¶
Bases: CGSEException
The base class for all Common-EGSE Warnings.