initial commit

This commit is contained in:
nathom 2021-03-22 09:21:27 -07:00
commit 3b6c1dc0bd
30 changed files with 6233 additions and 0 deletions

22
qobuz_dl/exceptions.py Normal file
View file

@ -0,0 +1,22 @@
class AuthenticationError(Exception):
pass
class IneligibleError(Exception):
pass
class InvalidAppIdError(Exception):
pass
class InvalidAppSecretError(Exception):
pass
class InvalidQuality(Exception):
pass
class NonStreamable(Exception):
pass