1
0
Fork 0
mirror of synced 2024-07-01 20:50:34 +12:00
Rare/custom-legendary/models/exceptions.py
2021-03-15 17:45:37 +01:00

13 lines
210 B
Python

# coding: utf-8
# ToDo more custom exceptions where it makes sense
class CaptchaError(Exception):
"""Raised by core if direct login fails"""
pass
class InvalidCredentialsError(Exception):
pass