legendary/legendary/models/exceptions.py

14 lines
232 B
Python
Raw Normal View History

#!/usr/bin/env 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