third_party.pylibs.pylint.src/pylint/test/input/func_noerror_exception.py
2015-02-14 18:13:20 +02:00

8 lines
191 B
Python

""" module doc """
__revision__ = ''
class MyException(Exception):
"""a custom exception with its *own* __init__ !!"""
def __init__(self, msg):
Exception.__init__(self, msg)