Exceptions
Custom exceptions for the Orche library.
CommandError
Bases: OrcheError
Raised when a command is not found in the registry.
Source code in orche/exceptions.py
16 17 18 19 | |
ConfigError
Bases: OrcheError
Raised for invalid configuration (e.g. missing compose files, bad params).
Source code in orche/exceptions.py
37 38 39 40 | |
DockerComposeError
Bases: OrcheError
Raised when a docker-compose command fails.
Source code in orche/exceptions.py
10 11 12 13 | |
HookError
Bases: OrcheError
Raised when a command hook fails during execution.
Source code in orche/exceptions.py
22 23 24 25 26 27 28 | |
OrcheError
Bases: Exception
Base exception for all Orche errors.
Source code in orche/exceptions.py
4 5 6 7 | |
OrchefileError
Bases: OrcheError
Raised when the orchefile cannot be loaded or is invalid.
Source code in orche/exceptions.py
31 32 33 34 | |