mirror of
https://git.gay/ready-dl/pyplayready.git
synced 2025-07-20 22:56:44 +00:00
14 lines
No EOL
418 B
Python
14 lines
No EOL
418 B
Python
class PyPlayredyException(Exception):
|
|
"""Exceptions used by pyplayready."""
|
|
|
|
|
|
class TooManySessions(PyPlayredyException):
|
|
"""Too many Sessions are open."""
|
|
|
|
|
|
class InvalidSession(PyPlayredyException):
|
|
"""No Session is open with the specified identifier."""
|
|
|
|
|
|
class DeviceMismatch(PyPlayredyException):
|
|
"""The Remote CDMs Device information and the APIs Device information did not match.""" |