mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
10 lines
184 B
Python
10 lines
184 B
Python
|
|
class MyException:
|
|
def __new__(cls, x):
|
|
pass
|
|
|
|
|
|
def foo():
|
|
raise <warning descr="Exception doesn't inherit from base 'Exception' class">My<caret>Exception()</warning>
|
|
|