Module exceptions :: Class StandardError
[frames | no frames]

Type StandardError

   object --+        
            |        
BaseException --+    
                |    
        Exception --+
                    |
                   StandardError

Known Subclasses:
ValueError

Base class for all standard Python exceptions that do not represent interpreter exiting.
Method Summary
  __init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
  __new__(T, S, ...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
Inherited from BaseException: __delattr__, __getattribute__, __getitem__, __getslice__, __reduce__, __repr__, __setattr__, __setstate__, __str__
Inherited from object: __hash__, __reduce_ex__

Class Variable Summary
Inherited from BaseException: args, message

Method Details

__init__(...)
(Constructor)

x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides:
exceptions.Exception.__init__

__new__(T, S, ...)

T.__new__(S, ...) -> a new object with type S, a subtype of T
Returns:
a new object with type S, a subtype of T
Overrides:
exceptions.Exception.__new__

Generated by Epydoc 2.1 on Wed Nov 14 17:47:20 2007 http://epydoc.sf.net