Source code for pdftools_toolbox.generic_error
[docs]
class GenericError(Exception):
"""
A generic error occurred.
"""
def __init__(self, message):
super().__init__(message)
[docs]
class GenericError(Exception):
"""
A generic error occurred.
"""
def __init__(self, message):
super().__init__(message)