blob: 09f3573c6d3b03ddba952ae5f475d2a0e9493d2b [file] [log] [blame]
Adam Israel0cd1c022019-09-03 18:26:08 -04001# Copyright 2019 Canonical Ltd.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
quilesja6748412019-12-04 07:51:26 +000015
Adam Israel0cd1c022019-09-03 18:26:08 -040016class JujuCharmNotFound(Exception):
17 """The Charm can't be found or is not readable."""
18
19
20class JujuApplicationExists(Exception):
21 """The Application already exists."""
22
23
24class N2VCPrimitiveExecutionFailed(Exception):
25 """Something failed while attempting to execute a primitive."""
26
27
28class NetworkServiceDoesNotExist(Exception):
29 """The Network Service being acted against does not exist."""
30
31
32class PrimitiveDoesNotExist(Exception):
33 """The Primitive being executed does not exist."""
34
35
36class NoRouteToHost(Exception):
37 """There was no route to the specified host."""
38
39
40class AuthenticationFailed(Exception):
41 """The authentication for the specified user failed."""
Adam Israel19c5cfc2019-10-03 12:35:38 -040042
Adam Israeld238b032019-11-11 16:42:02 -080043
beierlmf52cb7c2020-04-21 16:36:35 -040044class MethodNotImplemented(Exception):
Adam Israel9e5eddb2019-12-01 12:55:09 -050045 """The method is not implemented."""
46
47
quilesj29114342019-10-29 09:30:44 +010048class N2VCException(Exception):
49 """
50 N2VC exception base class
51 """
52
beierlmf52cb7c2020-04-21 16:36:35 -040053 def __init__(self, message: str = ""):
quilesj29114342019-10-29 09:30:44 +010054 Exception.__init__(self, message)
55 self.message = message
56
57 def __str__(self):
58 return self.message
59
60 def __repr__(self):
beierlmf52cb7c2020-04-21 16:36:35 -040061 return "{}({})".format(type(self), self.message)
quilesj29114342019-10-29 09:30:44 +010062
63
64class N2VCBadArgumentsException(N2VCException):
65 """
66 Bad argument values exception
67 """
68
beierlmf52cb7c2020-04-21 16:36:35 -040069 def __init__(self, message: str = "", bad_args: list = None):
quilesj29114342019-10-29 09:30:44 +010070 N2VCException.__init__(self, message=message)
71 self.bad_args = bad_args
72
73 def __str__(self):
beierlmf52cb7c2020-04-21 16:36:35 -040074 return "<{}> Bad arguments: {} -> {}".format(
75 type(self), super().__str__(), self.bad_args
76 )
quilesj29114342019-10-29 09:30:44 +010077
78
79class N2VCConnectionException(N2VCException):
80 """
81 Error connecting to VCA
82 """
83
beierlmf52cb7c2020-04-21 16:36:35 -040084 def __init__(self, message: str = "", url: str = None):
quilesj29114342019-10-29 09:30:44 +010085 N2VCException.__init__(self, message=message)
86 self.url = url
87
88 def __str__(self):
beierlmf52cb7c2020-04-21 16:36:35 -040089 return "<{}> Connection to {} failed: {}".format(
90 type(self), self.url, super().__str__()
91 )
quilesj29114342019-10-29 09:30:44 +010092
93
94class N2VCTimeoutException(N2VCException):
95 """
96 Timeout
97 """
98
beierlmf52cb7c2020-04-21 16:36:35 -040099 def __init__(self, message: str = "", timeout: str = ""):
quilesj29114342019-10-29 09:30:44 +0100100 N2VCException.__init__(self, message=message)
101 self.timeout = timeout
102
103 def __str__(self):
beierlmf52cb7c2020-04-21 16:36:35 -0400104 return "<{}> {} timeout: {}".format(type(self), self.timeout, super().__str__())
quilesj29114342019-10-29 09:30:44 +0100105
106
107class N2VCExecutionException(N2VCException):
108 """
109 Error executing primitive
110 """
111
beierlmf52cb7c2020-04-21 16:36:35 -0400112 def __init__(self, message: str = "", primitive_name: str = ""):
quilesj29114342019-10-29 09:30:44 +0100113 N2VCException.__init__(self, message=message)
114 self.primitive_name = primitive_name
115
116 def __str__(self):
beierlmf52cb7c2020-04-21 16:36:35 -0400117 return "<{}> Error executing primitive {} failed: {}".format(
118 type(self), self.primitive_name, super().__str__()
119 )
quilesj29114342019-10-29 09:30:44 +0100120
Adam Israel9e5eddb2019-12-01 12:55:09 -0500121
quilesj29114342019-10-29 09:30:44 +0100122class N2VCInvalidCertificate(N2VCException):
123 """
124 Invalid certificate
125 """
126
beierlmf52cb7c2020-04-21 16:36:35 -0400127 def __init__(self, message: str = ""):
quilesj29114342019-10-29 09:30:44 +0100128 N2VCException.__init__(self, message=message)
129
130 def __str__(self):
beierlmf52cb7c2020-04-21 16:36:35 -0400131 return "<{}> Invalid certificate: {}".format(type(self), super().__str__())
quilesja6748412019-12-04 07:51:26 +0000132
133
David Garciac6b19262020-04-08 09:48:21 +0200134class N2VCNotFound(N2VCException):
135 """
136 Not found
137 """
138
beierlmf52cb7c2020-04-21 16:36:35 -0400139 def __init__(self, message: str = ""):
David Garciac6b19262020-04-08 09:48:21 +0200140 N2VCException.__init__(self, message=message)
141
142 def __str__(self):
beierlmf52cb7c2020-04-21 16:36:35 -0400143 return "<{}> Not found: {}".format(type(self), super().__str__())
David Garciac6b19262020-04-08 09:48:21 +0200144
145
quilesja6748412019-12-04 07:51:26 +0000146class K8sException(Exception):
147 """
148 K8s exception
149 """
150
151 def __init__(self, message: str):
152 Exception.__init__(self, message)
153 self._message = message
154
155 def __str__(self):
156 return self._message
157
158 def __repr__(self):
159 return self._message