Mastodonplus.py/mastodon/exceptions.py

20 líneas
318 B
Python
Original Vista normal Històric

2017-04-11 00:48:30 +02:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Exceptions"""
class MastodonIllegalArgumentError(ValueError):
pass
class MastodonFileNotFoundError(IOError):
pass
class MastodonNetworkError(IOError):
pass
class MastodonAPIError(Exception):
pass
class MastodonRatelimitError(Exception):
pass