Public Member Functions | Public Attributes | List of all members
ECLAPI.ECLHTTPError Class Reference
Inheritance diagram for ECLAPI.ECLHTTPError:
ECLAPI.ECLAPIException

Public Member Functions

def __init__ (self, code, msg, body)
 
def __str__ (self)
 
- Public Member Functions inherited from ECLAPI.ECLAPIException
def __init__ (self, value)
 
def __str__ (self)
 

Public Attributes

 Code
 
 Message
 
 Body
 
- Public Attributes inherited from ECLAPI.ECLAPIException
 value
 

Detailed Description

Definition at line 38 of file ECLAPI.py.

Constructor & Destructor Documentation

def ECLAPI.ECLHTTPError.__init__ (   self,
  code,
  msg,
  body 
)

Definition at line 39 of file ECLAPI.py.

39  def __init__(self, code, msg, body):
40  self.Code = code
41  self.Message = msg
42  self.Body = body
43 
def __init__(self, code, msg, body)
Definition: ECLAPI.py:39

Member Function Documentation

def ECLAPI.ECLHTTPError.__str__ (   self)

Definition at line 44 of file ECLAPI.py.

44  def __str__(self):
45  return '%s %s' % (self.Code, self.Body)
46 
def __str__(self)
Definition: ECLAPI.py:44

Member Data Documentation

ECLAPI.ECLHTTPError.Body

Definition at line 42 of file ECLAPI.py.

ECLAPI.ECLHTTPError.Code

Definition at line 40 of file ECLAPI.py.

ECLAPI.ECLHTTPError.Message

Definition at line 41 of file ECLAPI.py.


The documentation for this class was generated from the following file: