mirror of
https://github.com/RGBCube/DML
synced 2025-07-27 23:57:44 +00:00
11 lines
294 B
Python
11 lines
294 B
Python
__all__ = ("DottedMarkupLanguageException", "DecodeError")
|
|
|
|
|
|
class DottedMarkupLanguageException(Exception):
|
|
"""Base class for all exceptions in this module."""
|
|
pass
|
|
|
|
|
|
class DecodeError(DottedMarkupLanguageException):
|
|
"""Raised when there is an error decoding a string."""
|
|
pass
|