mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-15 09:10:39 +00:00
17 lines
404 B
Python
17 lines
404 B
Python
|
#!/usr/bin/env python3
|
||
|
"""Custom exceptions."""
|
||
|
|
||
|
|
||
|
class TidyError(Exception):
|
||
|
"""Generic exception class for docker-tidy."""
|
||
|
|
||
|
def __init__(self, msg, original_exception=""):
|
||
|
super(TidyError, self).__init__(msg + ("\n%s" % original_exception))
|
||
|
self.original_exception = original_exception
|
||
|
|
||
|
|
||
|
class ConfigError(TidyError):
|
||
|
"""Errors related to config file handling."""
|
||
|
|
||
|
pass
|