third_party.pylibs.pylint.src/test/input/func_noerror_exception.py

8 lines
191 B
Python
Raw Normal View History

2006-04-26 10:48:09 +00:00
""" module doc """
__revision__ = ''
class MyException(Exception):
"""a custom exception with its *own* __init__ !!"""
def __init__(self, msg):
Exception.__init__(self, msg)