From a2fd8d52d288b5f5a71a997db5e05e5fe473785d Mon Sep 17 00:00:00 2001 From: stockbsd Date: Thu, 24 Oct 2019 16:30:44 +0800 Subject: [PATCH] 1. delete exceptions.py 2. minor improvement --- twitter_dl/exceptions.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 twitter_dl/exceptions.py diff --git a/twitter_dl/exceptions.py b/twitter_dl/exceptions.py deleted file mode 100644 index 1b1081a..0000000 --- a/twitter_dl/exceptions.py +++ /dev/null @@ -1,14 +0,0 @@ -class Error(Exception): - '''Base-class for all exceptions raised by this module.''' - - -class ConfidentialsNotSuppliedError(Error): - '''An API key and an API sectret must be supplied.''' - - -class BearerTokenNotFetchedError(Error): - '''Couldn't fetch the bearer token.''' - - -class InvalidDownloadPathError(Error): - '''Download path must be a directory.'''