clearml-agent/trains_agent/backend_config/errors.py
2019-10-25 22:28:44 +03:00

6 lines
186 B
Python

class ConfigurationError(Exception):
def __init__(self, msg, file_path=None, *args):
super(ConfigurationError, self).__init__(msg, *args)
self.file_path = file_path