mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-23 04:03:05 +00:00
23 lines
342 B
Python
23 lines
342 B
Python
# -*- coding: utf-8 -*-
|
|
# flake8:noqa
|
|
"""
|
|
PlexAPI Exceptions
|
|
"""
|
|
|
|
class PlexApiException(Exception):
|
|
pass
|
|
|
|
class BadRequest(PlexApiException):
|
|
pass
|
|
|
|
class NotFound(PlexApiException):
|
|
pass
|
|
|
|
class UnknownType(PlexApiException):
|
|
pass
|
|
|
|
class Unsupported(PlexApiException):
|
|
pass
|
|
|
|
class Unauthorized(PlexApiException):
|
|
pass
|