Skip to content
Snippets Groups Projects
Commit d5a024eb authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fix the exception

parent 5ec29780
No related branches found
No related tags found
No related merge requests found
# v2.17.15 # v2.17.15
* fix the exception
...@@ -22,7 +22,7 @@ class CustomException(Exception): ...@@ -22,7 +22,7 @@ class CustomException(Exception):
""" """
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
super().__init__(*args) self.args = args
self.kwargs = kwargs self.kwargs = kwargs
def __str__(self) -> str: def __str__(self) -> str:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment