Source code for sdss_catl_utils.custom_exceptions

"""
Classes for all SDSS_Catl_utils-specific exceptions
"""

__all__ = ["SDSSCatlUtils_Error"]

[docs]class SDSSCatlUtils_Error(Exception): """Base class of all LSS_Utils-specific exceptions""" def __init__(self, message): super(SDSSCatlUtils_Error, self).__init__(message)