1
Fork 0
mirror of https://github.com/RGBCube/DML synced 2025-07-27 23:57:44 +00:00
DML/dml/errors.py
2022-03-19 22:15:26 +03:00

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