third_party.pylibs.pylint.src/test/input/func_noerror_exception.py
root 4becf6f9e5 forget the past.
forget the past.
2006-04-26 10:48:09 +00: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)