From 6d7ba58f880be618ade07f8ea080fe8c4bf8a896 Mon Sep 17 00:00:00 2001 From: cyfraeviolae Date: Wed, 3 Apr 2024 03:10:44 -0400 Subject: venv --- .../site-packages/litestar/exceptions/dto_exceptions.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 venv/lib/python3.11/site-packages/litestar/exceptions/dto_exceptions.py (limited to 'venv/lib/python3.11/site-packages/litestar/exceptions/dto_exceptions.py') diff --git a/venv/lib/python3.11/site-packages/litestar/exceptions/dto_exceptions.py b/venv/lib/python3.11/site-packages/litestar/exceptions/dto_exceptions.py new file mode 100644 index 0000000..037e3c6 --- /dev/null +++ b/venv/lib/python3.11/site-packages/litestar/exceptions/dto_exceptions.py @@ -0,0 +1,13 @@ +from __future__ import annotations + +from litestar.exceptions import LitestarException + +__all__ = ("DTOFactoryException", "InvalidAnnotationException") + + +class DTOFactoryException(LitestarException): + """Base DTO exception type.""" + + +class InvalidAnnotationException(DTOFactoryException): + """Unexpected DTO type argument.""" -- cgit v1.2.3