PyMISPWarningLists/pymispwarninglists/exceptions.py

9 lines
223 B
Python
Raw Permalink Normal View History

2022-03-11 17:14:14 +01:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
class PyMISPWarningListsError(Exception):
def __init__(self, message: str):
super(PyMISPWarningListsError, self).__init__(message)
self.message = message