7 lines
242 B
Python
7 lines
242 B
Python
"""
|
|
This package provides custom exception classes used in the Matemat codebase.
|
|
"""
|
|
|
|
from .AuthenticatonError import AuthenticationError
|
|
from .DatabaseConsistencyError import DatabaseConsistencyError
|
|
from .HttpException import HttpException
|