Exceptions

exception modules.excepts.DryNoSauceHere

Exception used if the user has given no link or manga

__init__()

Initialize self. See help(type(self)) for accurate signature.

exception modules.excepts.EmptyChapter(manga, chap_num)

Exception used when the current chapter is empty

__init__(manga, chap_num)
Parameters:
  • manga (str) – name of the manga
  • chap_num (int/float/str) – chapter number that is empty in :param manga:
exception modules.excepts.FetcherNotFound(fetcher)

Exception used when the asked fetcher doesn’t exists

__init__(fetcher)
Parameters:fetcher (str) – name of the fetcher
exception modules.excepts.IsStandalone(name)

Exception used when trying to add to autodl a scan using a standalone fetcher

__init__(name)
Parameters:name (str) – name of the manga using the standalone fetcher
exception modules.excepts.MangaNotFound(name)

Exception used when the asked manga or chapter can’t be found

__init__(name)
Parameters:name (str) – name of the manga
exception modules.excepts.NoFetcherGiven

Exception used when there was no fetcher given to the program

__init__()

Initialize self. See help(type(self)) for accurate signature.

exception modules.excepts.TooManySauce

Exception used if the user has given a link and a manga name at the same time.

__init__()

Initialize self. See help(type(self)) for accurate signature.