-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.py
38 lines (32 loc) · 1.1 KB
/
error.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Copyright (C) 2013 Cisco Systems Inc.
# All rights reserved
class cli_syntax_error(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
class cmd_exec_error(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
class unexpected_error(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
class structured_output_not_supported_error(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
class data_type_error(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
class api_not_supported_error(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)