mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
10 lines
107 B
Python
10 lines
107 B
Python
|
|
class MyException(Exception):
|
|
def __new__(cls, x):
|
|
pass
|
|
|
|
|
|
def foo():
|
|
raise MyException()
|
|
|