SickGear/sickbeard/indexers/indexer_exceptions.py

30 lines
1.1 KiB
Python
Raw Normal View History

#!/usr/bin/env python2
#encoding:utf-8
#project:indexer_api
#license:unlicense (http://unlicense.org/)
"""Custom exceptions used or raised by indexer_api"""
from lib.tvdb_api.tvdb_exceptions import \
tvdb_exception, tvdb_attributenotfound, tvdb_episodenotfound, tvdb_error, \
tvdb_seasonnotfound, tvdb_shownotfound, tvdb_userabort, tvdb_tokenexpired
indexerExcepts = [
'indexer_exception', 'indexer_error', 'indexer_userabort',
'indexer_shownotfound', 'indexer_seasonnotfound', 'indexer_episodenotfound',
'indexer_attributenotfound', 'indexer_authenticationerror']
tvdbExcepts = [
'tvdb_exception', 'tvdb_error', 'tvdb_userabort', 'tvdb_shownotfound',
'tvdb_seasonnotfound', 'tvdb_episodenotfound', 'tvdb_attributenotfound',
'tvdb_tokenexpired']
# link API exceptions to our exception handler
2017-07-18 14:03:32 +00:00
indexer_exception = tvdb_exception
indexer_error = tvdb_error
indexer_authenticationerror = tvdb_tokenexpired
2017-07-18 14:03:32 +00:00
indexer_userabort = tvdb_userabort
indexer_attributenotfound = tvdb_attributenotfound
indexer_episodenotfound = tvdb_episodenotfound
indexer_seasonnotfound = tvdb_seasonnotfound
indexer_shownotfound = tvdb_shownotfound