Statistics
| Revision:

gvsig-scripting / org.gvsig.scripting / trunk / org.gvsig.scripting / org.gvsig.scripting.app / org.gvsig.scripting.app.mainplugin / src / main / resources-plugin / scripting / lib / pylint / test / input / func_noerror_exception.py @ 745

History | View | Annotate | Download (191 Bytes)

1
""" module doc """
2
__revision__ = ''
3

    
4
class MyException(Exception):
5
    """a custom exception with its *own* __init__ !!"""
6
    def __init__(self, msg):
7
        Exception.__init__(self, msg)