10 lines
213 B
Python
10 lines
213 B
Python
# pylint: disable=missing-docstring
|
|
|
|
class MultiException(Exception):
|
|
def __init__(self):
|
|
Exception.__init__(self)
|
|
def return_self(self):
|
|
return self
|
|
|
|
|
|
raise MultiException().return_self()
|