1
0
mirror of https://github.com/clearml/clearml synced 2025-03-04 19:20:16 +00:00
clearml/trains/utilities/pyhocon/exceptions.py

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