summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_e0001_py30.py
blob: 9c1b7273cc42bbb6a5cac1c8717a8f054ea0bb60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""test string exception
"""

__revision__ = ''

def function1():
    """hehehe"""
    raise "String Exception"

def function2():
    """hehehe"""
    raise 'exception', 'message'