File size: 346 Bytes
200cb0b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """Exceptions raised by the Iris engine."""
class IrisError(Exception):
"""Base exception for Iris engine failures."""
class IrisAPIError(IrisError):
"""Raised when the model endpoint cannot complete a request."""
class IrisResponseError(IrisError):
"""Raised when the model response cannot be parsed into the expected JSON."""
|