mirror of
https://github.com/clearml/clearml
synced 2025-02-01 01:26:49 +00:00
18 lines
352 B
Python
Executable File
18 lines
352 B
Python
Executable File
class ConfigException(Exception):
|
|
|
|
def __init__(self, message, ex=None):
|
|
super(ConfigException, self).__init__(message)
|
|
self._exception = ex
|
|
|
|
|
|
class ConfigMissingException(ConfigException, KeyError):
|
|
pass
|
|
|
|
|
|
class ConfigSubstitutionException(ConfigException):
|
|
pass
|
|
|
|
|
|
class ConfigWrongTypeException(ConfigException):
|
|
pass
|