exceptions
Base exceptions from which other PROCESS exceptions are derived
ProcessError
Bases: Exception
A base Exception to derive other PROCESS exceptions from
Source code in process/core/exceptions.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | |
ProcessValidationError
Bases: ProcessError
Exception raised when validating PROCESS input. E.g. initial values, constraint/variable combinations, switch combinations
Source code in process/core/exceptions.py
23 24 25 26 | |
ProcessValueError
Bases: ProcessError, ValueError
A ValueError in a PROCESS model.
Source code in process/core/exceptions.py
29 30 | |