blob: a8942b4f0c57ec62259f4e71cd722c84ca1e5154 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#
# Copyright BitBake Contributors
#
# SPDX-License-Identifier: GPL-2.0-only
#
class ClientError(Exception):
pass
class ServerError(Exception):
pass
class ConnectionClosedError(Exception):
pass
|