mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 08:48:05 +00:00
10 lines
230 B
Python
10 lines
230 B
Python
"""Custom exceptions for hyperglass."""
|
|
|
|
# Local
|
|
from ._common import HyperglassError, PublicHyperglassError, PrivateHyperglassError
|
|
|
|
__all__ = (
|
|
"HyperglassError",
|
|
"PublicHyperglassError",
|
|
"PrivateHyperglassError",
|
|
)
|