blob: 611e5a3845d3c25fe526b056f9f9b5372758a399 [file] [log] [blame]
Klement Sekera77c821c2022-04-14 16:29:07 +02001class CliFailedCommandError(Exception):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02002 """cli command failed."""
Klement Sekera77c821c2022-04-14 16:29:07 +02003
4
5class CliSyntaxError(Exception):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02006 """cli command had a syntax error."""
Klement Sekera77c821c2022-04-14 16:29:07 +02007
8
9class UnexpectedApiReturnValueError(Exception):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020010 """exception raised when the API return value is unexpected"""
Klement Sekera77c821c2022-04-14 16:29:07 +020011
12 def __init__(self, retval, message):
13 self.retval = retval
14 self.message = message
15 super().__init__(message)