clearml-agent/clearml_agent/backend_config/errors.py
2020-12-22 21:21:29 +02: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