blob: 2f7da963f7022350b74714107d8025348e6e941d [file] [log] [blame]
Klement Sekera77c821c2022-04-14 16:29:07 +02001class CliFailedCommandError(Exception):
2 """ cli command failed."""
3
4
5class CliSyntaxError(Exception):
6 """ cli command had a syntax error."""
7
8
9class UnexpectedApiReturnValueError(Exception):
10 """ exception raised when the API return value is unexpected """
11
12 def __init__(self, retval, message):
13 self.retval = retval
14 self.message = message
15 super().__init__(message)