Trees | Indices | Help |
|
---|
|
1 # -*- coding: utf-8 -*- 2 """ Contains all exceptions used by the mrv package in general """ 3 __docformat__ = "restructuredtext" 46 """ Base Class for all exceptions that the mrv framework throws"""18 self._message = message 19 message = property(_get_message, _set_message) 208 self._message = "" 9 if args and isinstance(args[0], basestring): 10 self._message = args[0] 11 args = args[1:] 12 # END args and message handling 13 Exception.__init__(self,*args, **kwargs)14 16 return self._message
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue Apr 19 18:00:22 2011 | http://epydoc.sourceforge.net |