| class DirectDownloadLinkException(Exception): | |
| """Not method found for extracting direct download link from the http link""" | |
| pass | |
| class NotSupportedExtractionArchive(Exception): | |
| """The archive format use is trying to extract is not supported""" | |
| pass | |
| class RssShutdownException(Exception): | |
| """This exception should be raised when shutdown is called to stop the montior""" | |
| pass | |
| class TgLinkException(Exception): | |
| """No Access granted for this chat""" | |
| pass | |