Source code for pyeudiw.status_list.exceptions
[docs]
class PositionOutOfRangeError(Exception):
"""
Exception raised when the position is out of range.
"""
pass
[docs]
class InvalidTokenFormatError(Exception):
"""
Exception raised when the token type is invalid.
"""
pass
[docs]
class MissingStatusListUriError(Exception):
"""
Exception raised when the status list URI is missing.
"""
pass
[docs]
class StatusListRetrievalError(Exception):
"""
Exception raised when there is an error retrieving the status list.
"""
pass