Skip to content

Commit

Permalink
[feat-8] Unknown Exception에 대하여 Issue 링크 추가 (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
iml1111 committed Jul 23, 2022
1 parent 7bb684b commit 4541c5a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion django_jwt_extended/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ def __init__(self, fn_name: str):
self.fn_name = fn_name

def __str__(self):
return f'In "{self.fn_name}" view, "Request object" was not detected in the argument.'
return (
f'In "{self.fn_name}" view, "Request object" was not detected in the argument.',
'If you run into any issues, please report them here: (https://github.com/iml1111/django-jwt-extended/issues)'
)


class NotFoundSecretKey(Exception):
Expand Down

0 comments on commit 4541c5a

Please sign in to comment.