summaryrefslogtreecommitdiffstats
path: root/typing-stubs/colored/exceptions.pyi
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-25 02:59:47 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-25 02:59:47 +0000
commit03a1bd448be99d872d663a57a1cf4492882e090d (patch)
treec3d23691aa4dfdba89856bde05707a9a8e16abab /typing-stubs/colored/exceptions.pyi
parentAdding upstream version 0.1.28. (diff)
downloaddebputy-03a1bd448be99d872d663a57a1cf4492882e090d.tar.xz
debputy-03a1bd448be99d872d663a57a1cf4492882e090d.zip
Adding upstream version 0.1.29.upstream/0.1.29
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'typing-stubs/colored/exceptions.pyi')
-rw-r--r--typing-stubs/colored/exceptions.pyi17
1 files changed, 17 insertions, 0 deletions
diff --git a/typing-stubs/colored/exceptions.pyi b/typing-stubs/colored/exceptions.pyi
new file mode 100644
index 0000000..cf3e9b8
--- /dev/null
+++ b/typing-stubs/colored/exceptions.pyi
@@ -0,0 +1,17 @@
+from _typeshed import Incomplete
+
+class InvalidColor(Exception):
+ message: Incomplete
+ def __init__(self, message: str) -> None: ...
+
+class InvalidHexColor(Exception):
+ message: Incomplete
+ def __init__(self, message: str) -> None: ...
+
+class InvalidStyle(Exception):
+ message: Incomplete
+ def __init__(self, message: str) -> None: ...
+
+class InvalidControl(Exception):
+ message: Incomplete
+ def __init__(self, message: str) -> None: ...