CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
MatrixReader.MatrixException Class Reference
Inheritance diagram for MatrixReader.MatrixException:
Exception

Public Member Functions

def __init__ (self, msg)
 
def __str__ (self)
 

Public Attributes

 msg
 

Detailed Description

Definition at line 9 of file MatrixReader.py.

Constructor & Destructor Documentation

def MatrixReader.MatrixException.__init__ (   self,
  msg 
)

Definition at line 10 of file MatrixReader.py.

10  def __init__(self, msg):
11  self.msg = msg

Member Function Documentation

def MatrixReader.MatrixException.__str__ (   self)

Definition at line 12 of file MatrixReader.py.

References MatrixReader.MatrixException.msg.

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

12  def __str__(self):
13  return self.msg
14 
15 # ================================================================================
16 

Member Data Documentation

MatrixReader.MatrixException.msg