We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34e97e4 commit d0dd2ecCopy full SHA for d0dd2ec
quantum/client/__init__.py
@@ -33,7 +33,8 @@
33
430: exceptions.PortNotFound,
34
431: exceptions.StateInvalid,
35
432: exceptions.PortInUseClient,
36
- 440: exceptions.AlreadyAttachedClient}
+ 440: exceptions.AlreadyAttachedClient,
37
+ 501: exceptions.NotImplementedError}
38
AUTH_TOKEN_HEADER = "X-Auth-Token"
39
40
quantum/common/exceptions.py
@@ -159,6 +159,10 @@ class MissingArgumentError(Error):
159
pass
160
161
162
+class NotImplementedError(Error):
163
+ pass
164
+
165
166
def wrap_exception(f):
167
def _wrap(*args, **kw):
168
try:
0 commit comments