ansible-doctor/ansibledoctor/exception.py

23 lines
484 B
Python
Raw Normal View History

2019-10-08 11:30:31 +02:00
#!/usr/bin/env python3
2019-10-08 11:39:27 +02:00
"""Custom exceptions."""
2019-10-08 11:30:31 +02:00
class DoctorError(Exception):
"""Generic exception class for ansible-doctor."""
def __init__(self, msg, original_exception=""):
super().__init__(f"{msg}\n{original_exception}")
2019-10-08 11:30:31 +02:00
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