Skip to content

Commit

Permalink
Added InvalidLoginOrPasswordException
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeusina committed Aug 8, 2023
1 parent 243cb7f commit ff257e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Empty file.
6 changes: 6 additions & 0 deletions petersbugredu_wrap/errors/invalid_login_or_password_exc.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
class InvalidLoginOrPasswordException(Exception):
def __init__(self, *args):
if args:
self.message = args[0]
else:
self.message = None

0 comments on commit ff257e5

Please sign in to comment.