legendary/legendary/models/exceptions.py
2020-05-15 07:01:30 +02: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