Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
anasty17
GitHub Repository: anasty17/mirror-leech-telegram-bot
Path: blob/master/bot/helper/ext_utils/exceptions.py
1630 views
1
class DirectDownloadLinkException(Exception):
2
"""Not method found for extracting direct download link from the http link"""
3
4
pass
5
6
7
class NotSupportedExtractionArchive(Exception):
8
"""The archive format use is trying to extract is not supported"""
9
10
pass
11
12
13
class RssShutdownException(Exception):
14
"""This exception should be raised when shutdown is called to stop the monitor"""
15
16
pass
17
18
19
class TgLinkException(Exception):
20
"""No Access granted for this chat"""
21
22
pass
23
24