Source code for retaggr.errors

[docs]class MissingAPIKeysException(Exception): """Raised if a required API key to search an engine is missing.""" pass
[docs]class NotAValidEngineException(Exception): """Raised if the passed in engine does not exist."""
[docs]class NotAvailableSearchException(Exception): """This engine is not capable of searching this option."""
[docs]class EngineCooldownException(Exception): """This engine is on cooldown."""
[docs]class EngineIsDown(Exception): """The engine is currently not available (eg. Database issues)."""