exceptions
ContentExtractionError
Bases: ExtractionError
Raised when required content cannot be extracted from the page.
Source code in src/torah_dl/core/exceptions.py
19 20 21 22 | |
DownloadError
Bases: TorahDLError
Raised when there are issues during the download process.
Source code in src/torah_dl/core/exceptions.py
43 44 45 46 | |
DownloadURLError
Bases: ContentExtractionError
Raised when the download URL cannot be found or extracted.
Source code in src/torah_dl/core/exceptions.py
25 26 27 28 | |
ExtractionError
Bases: TorahDLError
Base class for all extraction-related errors.
Source code in src/torah_dl/core/exceptions.py
7 8 9 10 | |
ExtractorNotFoundError
Bases: ExtractionError
Raised when no extractor is found for a given URL.
Source code in src/torah_dl/core/exceptions.py
37 38 39 40 | |
NetworkError
Bases: ExtractionError
Raised when there are network-related issues during content extraction.
Source code in src/torah_dl/core/exceptions.py
13 14 15 16 | |
TitleExtractionError
Bases: ContentExtractionError
Raised when the title cannot be found or decoded.
Source code in src/torah_dl/core/exceptions.py
31 32 33 34 | |
TorahDLError
Bases: Exception
Base exception class for all torah-dl errors.
Source code in src/torah_dl/core/exceptions.py
1 2 3 4 | |