Patrick Williams | ac13d5f | 2023-11-24 18:59:46 -0600 | [diff] [blame] | 1 | # |
2 | # Copyright BitBake Contributors | ||||
3 | # | ||||
4 | # SPDX-License-Identifier: GPL-2.0-only | ||||
5 | # | ||||
6 | |||||
7 | |||||
8 | class ClientError(Exception): | ||||
9 | pass | ||||
10 | |||||
11 | |||||
12 | class InvokeError(Exception): | ||||
13 | pass | ||||
14 | |||||
15 | |||||
16 | class ServerError(Exception): | ||||
17 | pass | ||||
18 | |||||
19 | |||||
20 | class ConnectionClosedError(Exception): | ||||
21 | pass |