summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/asyncrpc/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/asyncrpc/exceptions.py')
-rw-r--r--bitbake/lib/bb/asyncrpc/exceptions.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/bitbake/lib/bb/asyncrpc/exceptions.py b/bitbake/lib/bb/asyncrpc/exceptions.py
new file mode 100644
index 0000000000..a8942b4f0c
--- /dev/null
+++ b/bitbake/lib/bb/asyncrpc/exceptions.py
@@ -0,0 +1,17 @@
1#
2# Copyright BitBake Contributors
3#
4# SPDX-License-Identifier: GPL-2.0-only
5#
6
7
8class ClientError(Exception):
9 pass
10
11
12class ServerError(Exception):
13 pass
14
15
16class ConnectionClosedError(Exception):
17 pass