summaryrefslogtreecommitdiff
path: root/test/input/func_noerror_exception.py
blob: 1c3d8b56a76803c8c51cc4377df46032420e58b6 (plain)
1
2
3
4
5
6
7
""" module doc """
__revision__ = ''

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