Exceptions
ServerNotSupported
ServerNotSupported(server)
Il server da dove si tenta di scaricare l'episodio non è supportato.
Source code in animeworld/exceptions.py
| def __init__(self, server):
self.server = server
self.message = f"Il server {server} non è supportato."
super().__init__(self.message)
|
AnimeNotAvailable
AnimeNotAvailable(animeName='')
L'anime non è ancora disponibile.
Source code in animeworld/exceptions.py
| def __init__(self, animeName=''):
self.anime = animeName
self.message = f"L'anime '{animeName}' non è ancora disponibile."
super().__init__(self.message)
|
Error404
Il link porta ad una pagina inesistente.
Source code in animeworld/exceptions.py
| def __init__(self, link):
self.link = link
self.message = f"Il link '{link}' porta ad una pagina inesistente."
super().__init__(self.message)
|
DeprecatedLibrary
DeprecatedLibrary(file, funName, line)
Libreria deprecata a causa di un cambiamento della struttura del sito.
Source code in animeworld/exceptions.py
| def __init__(self, file, funName, line):
self.funName = funName
self.line = line
self.message = f"Il sito è cambiato, di conseguenza la libreria è DEPRECATA. -> [File {file} in {funName} - {line}]"
super().__init__(self.message)
|
HardStoppedDownload
HardStoppedDownload(file)
Il file in download è stato forzatamente interrotto.
Source code in animeworld/exceptions.py
| def __init__(self, file:str):
self.file = file
self.message = f"Il file in download ({file}) è stato forzatamente interrotto."
super().__init__(self.message)
|
Ultimo aggiornamento:
June 28, 2023