1
0
Fork 0
mirror of synced 2024-05-07 05:42:46 +12:00
bulk-downloader-for-reddit/bdfr/exceptions.py
OMEGARAZER 83f45e7f60
Standardize shebang and coding declaration
Standardizes shebang and coding declarations.

Coding matches what's used by install tools such as pip(x).

Removes a few init files that were not needed.
2022-12-19 18:32:37 -05:00

31 lines
461 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
class BulkDownloaderException(Exception):
pass
class RedditUserError(BulkDownloaderException):
pass
class RedditAuthenticationError(RedditUserError):
pass
class ArchiverError(BulkDownloaderException):
pass
class SiteDownloaderError(BulkDownloaderException):
pass
class NotADownloadableLinkError(SiteDownloaderError):
pass
class ResourceNotFound(SiteDownloaderError):
pass