Raised when an invalid configuration is encountered.
| 95 | |
| 96 | |
| 97 | class ConfigurationError(DTSError): |
| 98 | """ |
| 99 | Raised when an invalid configuration is encountered. |
| 100 | """ |
| 101 | |
| 102 | severity: ClassVar[ErrorSeverity] = ErrorSeverity.CONFIG_ERR |
| 103 | |
| 104 | |
| 105 | class RemoteCommandExecutionError(DTSError): |
no outgoing calls