prometheus-pve-sd/prometheuspvesd/exception.py

18 lines
466 B
Python
Raw Normal View History

2021-06-09 20:44:10 +02:00
#!/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