summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/asyncrpc/exceptions.py
blob: ae1043a38b092c98e97b68b34f07900e57c7681a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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