#!/usr/bin/env python3 """Custom exceptions.""" class PrometheusSDError(Exception): """Generic exception class for promtheus-pve-sd.""" def __init__(self, msg, original_exception=""): super(PrometheusSDError, self).__init__("{msg}\n{org}".format(msg=msg, org=original_exception)) self.original_exception = original_exception class ConfigError(PrometheusSDError): """Errors related to config file handling.""" pass