mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-24 03:57:14 -04:00
initial commit
This commit is contained in:
commit
3b6c1dc0bd
30 changed files with 6233 additions and 0 deletions
46
qobuz_dl_rewrite/exceptions.py
Normal file
46
qobuz_dl_rewrite/exceptions.py
Normal file
|
@ -0,0 +1,46 @@
|
|||
class AuthenticationError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class IneligibleError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class InvalidAppIdError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class InvalidAppSecretError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class InvalidQuality(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class NonStreamable(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class InvalidContainerError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class InvalidSourceError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class ParsingError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class TooLargeCoverArt(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class BadEncoderOption(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class ConversionError(Exception):
|
||||
pass
|
Loading…
Add table
Add a link
Reference in a new issue