mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-04 20:30:43 +00:00
23 lines
506 B
Python
23 lines
506 B
Python
#!/usr/bin/env python3
|
|
"""Custom exceptions."""
|
|
|
|
|
|
class DoctorError(Exception):
|
|
"""Generic exception class for ansible-doctor."""
|
|
|
|
def __init__(self, msg, original_exception=""):
|
|
super(DoctorError, self).__init__(msg + ("\n%s" % original_exception))
|
|
self.original_exception = original_exception
|
|
|
|
|
|
class ConfigError(DoctorError):
|
|
"""Errors related to config file handling."""
|
|
|
|
pass
|
|
|
|
|
|
class InputError(DoctorError):
|
|
"""Errors related to config file handling."""
|
|
|
|
pass
|