Exceptions
Exception classes for PyChassis.
ChassisError
Bases: Exception
Base exception for all Chassis errors.
Source code in chassis/exceptions.py
4 5 6 7 | |
DimensionMismatchError
Bases: ChassisError
Raised when vector dimensions don't match index dimensions.
Source code in chassis/exceptions.py
10 11 12 13 | |
IndexNotFoundError
Bases: ChassisError
Raised when the index file cannot be found or opened.
Source code in chassis/exceptions.py
22 23 24 25 | |
InvalidPathError
Bases: ChassisError
Raised when the path is invalid or inaccessible.
Source code in chassis/exceptions.py
16 17 18 19 | |
NullPointerError
Bases: ChassisError
Raised when a NULL pointer is returned from FFI.
Source code in chassis/exceptions.py
28 29 30 31 | |