Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/boto/rds2/exceptions.py @ 5:9b1c78e6ba9c draft default tip
"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author | shellac |
---|---|
date | Mon, 01 Jun 2020 08:59:25 -0400 |
parents | 79f47841a781 |
children |
comparison
equal
deleted
inserted
replaced
4:79f47841a781 | 5:9b1c78e6ba9c |
---|---|
1 # Copyright (c) 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved | |
2 # | |
3 # Permission is hereby granted, free of charge, to any person obtaining a | |
4 # copy of this software and associated documentation files (the | |
5 # "Software"), to deal in the Software without restriction, including | |
6 # without limitation the rights to use, copy, modify, merge, publish, dis- | |
7 # tribute, sublicense, and/or sell copies of the Software, and to permit | |
8 # persons to whom the Software is furnished to do so, subject to the fol- | |
9 # lowing conditions: | |
10 # | |
11 # The above copyright notice and this permission notice shall be included | |
12 # in all copies or substantial portions of the Software. | |
13 # | |
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | |
15 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL- | |
16 # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT | |
17 # SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | |
18 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
19 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | |
20 # IN THE SOFTWARE. | |
21 # | |
22 from boto.exception import JSONResponseError | |
23 | |
24 | |
25 class InvalidSubnet(JSONResponseError): | |
26 pass | |
27 | |
28 | |
29 class DBParameterGroupQuotaExceeded(JSONResponseError): | |
30 pass | |
31 | |
32 | |
33 class DBSubnetGroupAlreadyExists(JSONResponseError): | |
34 pass | |
35 | |
36 | |
37 class DBSubnetGroupQuotaExceeded(JSONResponseError): | |
38 pass | |
39 | |
40 | |
41 class InstanceQuotaExceeded(JSONResponseError): | |
42 pass | |
43 | |
44 | |
45 class InvalidRestore(JSONResponseError): | |
46 pass | |
47 | |
48 | |
49 class InvalidDBParameterGroupState(JSONResponseError): | |
50 pass | |
51 | |
52 | |
53 class AuthorizationQuotaExceeded(JSONResponseError): | |
54 pass | |
55 | |
56 | |
57 class DBSecurityGroupAlreadyExists(JSONResponseError): | |
58 pass | |
59 | |
60 | |
61 class InsufficientDBInstanceCapacity(JSONResponseError): | |
62 pass | |
63 | |
64 | |
65 class ReservedDBInstanceQuotaExceeded(JSONResponseError): | |
66 pass | |
67 | |
68 | |
69 class DBSecurityGroupNotFound(JSONResponseError): | |
70 pass | |
71 | |
72 | |
73 class DBInstanceAlreadyExists(JSONResponseError): | |
74 pass | |
75 | |
76 | |
77 class ReservedDBInstanceNotFound(JSONResponseError): | |
78 pass | |
79 | |
80 | |
81 class DBSubnetGroupDoesNotCoverEnoughAZs(JSONResponseError): | |
82 pass | |
83 | |
84 | |
85 class InvalidDBSecurityGroupState(JSONResponseError): | |
86 pass | |
87 | |
88 | |
89 class InvalidVPCNetworkState(JSONResponseError): | |
90 pass | |
91 | |
92 | |
93 class ReservedDBInstancesOfferingNotFound(JSONResponseError): | |
94 pass | |
95 | |
96 | |
97 class SNSTopicArnNotFound(JSONResponseError): | |
98 pass | |
99 | |
100 | |
101 class SNSNoAuthorization(JSONResponseError): | |
102 pass | |
103 | |
104 | |
105 class SnapshotQuotaExceeded(JSONResponseError): | |
106 pass | |
107 | |
108 | |
109 class OptionGroupQuotaExceeded(JSONResponseError): | |
110 pass | |
111 | |
112 | |
113 class DBParameterGroupNotFound(JSONResponseError): | |
114 pass | |
115 | |
116 | |
117 class SNSInvalidTopic(JSONResponseError): | |
118 pass | |
119 | |
120 | |
121 class InvalidDBSubnetGroupState(JSONResponseError): | |
122 pass | |
123 | |
124 | |
125 class DBSubnetGroupNotFound(JSONResponseError): | |
126 pass | |
127 | |
128 | |
129 class InvalidOptionGroupState(JSONResponseError): | |
130 pass | |
131 | |
132 | |
133 class SourceNotFound(JSONResponseError): | |
134 pass | |
135 | |
136 | |
137 class SubscriptionCategoryNotFound(JSONResponseError): | |
138 pass | |
139 | |
140 | |
141 class EventSubscriptionQuotaExceeded(JSONResponseError): | |
142 pass | |
143 | |
144 | |
145 class DBSecurityGroupNotSupported(JSONResponseError): | |
146 pass | |
147 | |
148 | |
149 class InvalidEventSubscriptionState(JSONResponseError): | |
150 pass | |
151 | |
152 | |
153 class InvalidDBSubnetState(JSONResponseError): | |
154 pass | |
155 | |
156 | |
157 class InvalidDBSnapshotState(JSONResponseError): | |
158 pass | |
159 | |
160 | |
161 class SubscriptionAlreadyExist(JSONResponseError): | |
162 pass | |
163 | |
164 | |
165 class DBSecurityGroupQuotaExceeded(JSONResponseError): | |
166 pass | |
167 | |
168 | |
169 class ProvisionedIopsNotAvailableInAZ(JSONResponseError): | |
170 pass | |
171 | |
172 | |
173 class AuthorizationNotFound(JSONResponseError): | |
174 pass | |
175 | |
176 | |
177 class OptionGroupAlreadyExists(JSONResponseError): | |
178 pass | |
179 | |
180 | |
181 class SubscriptionNotFound(JSONResponseError): | |
182 pass | |
183 | |
184 | |
185 class DBUpgradeDependencyFailure(JSONResponseError): | |
186 pass | |
187 | |
188 | |
189 class PointInTimeRestoreNotEnabled(JSONResponseError): | |
190 pass | |
191 | |
192 | |
193 class AuthorizationAlreadyExists(JSONResponseError): | |
194 pass | |
195 | |
196 | |
197 class DBSubnetQuotaExceeded(JSONResponseError): | |
198 pass | |
199 | |
200 | |
201 class OptionGroupNotFound(JSONResponseError): | |
202 pass | |
203 | |
204 | |
205 class DBParameterGroupAlreadyExists(JSONResponseError): | |
206 pass | |
207 | |
208 | |
209 class DBInstanceNotFound(JSONResponseError): | |
210 pass | |
211 | |
212 | |
213 class ReservedDBInstanceAlreadyExists(JSONResponseError): | |
214 pass | |
215 | |
216 | |
217 class InvalidDBInstanceState(JSONResponseError): | |
218 pass | |
219 | |
220 | |
221 class DBSnapshotNotFound(JSONResponseError): | |
222 pass | |
223 | |
224 | |
225 class DBSnapshotAlreadyExists(JSONResponseError): | |
226 pass | |
227 | |
228 | |
229 class StorageQuotaExceeded(JSONResponseError): | |
230 pass | |
231 | |
232 | |
233 class SubnetAlreadyInUse(JSONResponseError): | |
234 pass |