SickGear/lib/api_tvdb/tvdb_exceptions.py
JackDandy 5ff18a8652 Add try_date for use in attempting conversion of unspecified date format types birthdate, deathdate, aired.
Change tweaks, remove one warn, order imports.
Change tidy up of other warnings, mismatched types, typos, a strange arg issue with deepcopy, and PEP8.
Bug fix, bad key in get_item for TVInfoSocialIDs.

Fix ambiguities of `show` used in sg versus external uses.

Change add cast, crew type mappings
Change only take Main Actors, Hosts, Interviewers, Presenters.
2023-05-03 00:43:58 +01:00

72 lines
1.6 KiB
Python

# encoding:utf-8
# author:dbr/Ben
# project:tvdb_api
# repository:http://github.com/dbr/tvdb_api
# license:unlicense (http://unlicense.org/)
"""Custom exceptions used or raised by tvdb_api
"""
__author__ = 'dbr/Ben'
__version__ = '1.9'
__all__ = ['TvdbException', 'TvdbError', 'TvdbUserabort', 'TvdbShownotfound',
'TvdbSeasonnotfound', 'TvdbEpisodenotfound', 'TvdbAttributenotfound', 'TvdbTokenexpired', 'TvdbTokenFailure']
from lib.tvinfo_base.exceptions import *
class TvdbException(BaseTVinfoException):
"""Any exception generated by tvdb_api
"""
pass
class TvdbError(BaseTVinfoError, TvdbException):
"""An error with thetvdb.com (Cannot connect, for example)
"""
pass
class TvdbUserabort(BaseTVinfoUserabort, TvdbError):
"""User aborted the interactive selection (via
the q command, ^c etc)
"""
pass
class TvdbShownotfound(BaseTVinfoShownotfound, TvdbError):
"""Show cannot be found on thetvdb.com (non-existant show)
"""
pass
class TvdbSeasonnotfound(BaseTVinfoSeasonnotfound, TvdbError):
"""Season cannot be found on thetvdb.com
"""
pass
class TvdbEpisodenotfound(BaseTVinfoEpisodenotfound, TvdbError):
"""Episode cannot be found on thetvdb.com
"""
pass
class TvdbAttributenotfound(BaseTVinfoAttributenotfound, TvdbError):
"""Raised if an episode does not have the requested
attribute (such as a episode name)
"""
pass
class TvdbTokenexpired(BaseTVinfoAuthenticationerror, TvdbError):
"""token expired or missing thetvdb.com
"""
pass
class TvdbTokenFailure(BaseTVinfoAuthenticationerror, TvdbError):
"""getting token failed
"""
pass