exceptions
PumConfigError
Bases: PumException
Exception raised for errors in the PUM configuration.
Source code in pum/exceptions.py
29 30 31 32 |
|
PumException
Bases: Exception
Base class for all exceptions raised by PUM.
Source code in pum/exceptions.py
1 2 3 4 |
|
PumInvalidChangelog
Bases: PumException
Exception raised for invalid changelog.
Attributes:
Name | Type | Description |
---|---|---|
message |
str
|
Explanation of the error. |
Source code in pum/exceptions.py
18 19 20 21 22 23 24 25 26 |
|
PumMigrationError
Bases: PumException
Exception raised for errors in the PUM migration process.
Source code in pum/exceptions.py
35 36 37 38 |
|
PumSqlException
Bases: PumException
Exception raised for SQL-related errors in PUM.
Attributes:
Name | Type | Description |
---|---|---|
message |
str
|
Explanation of the error. |
Source code in pum/exceptions.py
7 8 9 10 11 12 13 14 15 |
|
PumVersionError
Bases: PumException
Exception raised for version-related errors in PUM.
Source code in pum/exceptions.py
41 42 43 44 |
|