CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Public Attributes
errors.ServerNotFoundException Class Reference
Inheritance diagram for errors.ServerNotFoundException:
Exception

Public Member Functions

def __init__
 
def __str__
 

Public Attributes

 server_name
 

Detailed Description

Definition at line 12 of file errors.py.

Constructor & Destructor Documentation

def errors.ServerNotFoundException.__init__ (   self,
  server_name 
)

Definition at line 13 of file errors.py.

13 
14  def __init__(self, server_name):
15  self.server_name = server_name

Member Function Documentation

def errors.ServerNotFoundException.__str__ (   self)

Definition at line 16 of file errors.py.

References errors.ServerNotFoundException.server_name.

Referenced by edmStreamStallGrapher.Point.__repr__(), BeautifulSoup.Tag.__repr__(), BeautifulSoup.Tag.__unicode__(), and BeautifulSoup.Tag.prettify().

16 
17  def __str__(self):
18  return "The server '%s' was not found." % self.server_name

Member Data Documentation

errors.ServerNotFoundException.server_name

Definition at line 14 of file errors.py.

Referenced by errors.ServerNotFoundException.__str__().