aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/asyncrpc/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bb/asyncrpc/exceptions.py')
-rw-r--r--lib/bb/asyncrpc/exceptions.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/bb/asyncrpc/exceptions.py b/lib/bb/asyncrpc/exceptions.py
new file mode 100644
index 000000000..ae1043a38
--- /dev/null
+++ b/lib/bb/asyncrpc/exceptions.py
@@ -0,0 +1,21 @@
+#
+# Copyright BitBake Contributors
+#
+# SPDX-License-Identifier: GPL-2.0-only
+#
+
+
+class ClientError(Exception):
+ pass
+
+
+class InvokeError(Exception):
+ pass
+
+
+class ServerError(Exception):
+ pass
+
+
+class ConnectionClosedError(Exception):
+ pass