src.request.ResponseError
index
/var/lib/jenkins/workspace/resmon_autoclient_doc/src/request/ResponseError.py

 
Classes
       
builtins.RuntimeError(builtins.Exception)
ResponseError

 
class ResponseError(builtins.RuntimeError)
    Represents HTTP error which occurs     during doing requests to external servers
 
 
Method resolution order:
ResponseError
builtins.RuntimeError
builtins.Exception
builtins.BaseException
builtins.object

Methods defined here:
__init__(self, code, message)
Initializes response error
 
:param code: HTTP error code
:param message: Message returned by external server
:type code: int
:type message: str
__str__(self)
Converts this error to string
 
:return: returns string representation of this error
:rtype: str

Data descriptors defined here:
__weakref__
list of weak references to the object (if defined)

Methods inherited from builtins.RuntimeError:
__new__(*args, **kwargs) from builtins.type
Create and return a new object.  See help(type) for accurate signature.

Methods inherited from builtins.BaseException:
__delattr__(self, name, /)
Implement delattr(self, name).
__getattribute__(self, name, /)
Return getattr(self, name).
__reduce__(...)
helper for pickle
__repr__(self, /)
Return repr(self).
__setattr__(self, name, value, /)
Implement setattr(self, name, value).
__setstate__(...)
with_traceback(...)
Exception.with_traceback(tb) --
set self.__traceback__ to tb and return self.

Data descriptors inherited from builtins.BaseException:
__cause__
exception cause
__context__
exception context
__dict__
__suppress_context__
__traceback__
args