faruken/aio-tinder

View on GitHub
aiotinder/controllers/exceptions.py

Summary

Maintainability
A
0 mins
Test Coverage
# -*- coding: utf-8 -*-

"""Exceptions.
"""

class TinderException(Exception):
    """
    """
    pass


class TinderAuthenticationException(TinderException):
    """
    """
    pass


class TinderConnectionException(TinderException):
    """
    """
    pass