mirror of
https://github.com/clearml/clearml-agent
synced 2025-01-31 17:16:51 +00:00
6 lines
186 B
Python
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
|