6 lines
123 B
Python
6 lines
123 B
Python
|
class Redirect(Exception):
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
self.args = args
|
||
|
self.kwargs = kwargs
|
||
|
|