482e54cfce
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
6 lines
123 B
Python
6 lines
123 B
Python
class Redirect(Exception):
|
|
def __init__(self, *args, **kwargs):
|
|
self.args = args
|
|
self.kwargs = kwargs
|
|
|