Source code for inlyse.exceptions
"""Module for all exceptions
"""
[docs]class InlyseApiError(Exception):
"""The INLYSE API returned an error"""
def __init__(self, *args, **kwargs):
self.response = kwargs.pop("response", None)
"""Module for all exceptions
"""
[docs]class InlyseApiError(Exception):
"""The INLYSE API returned an error"""
def __init__(self, *args, **kwargs):
self.response = kwargs.pop("response", None)