1
0

exceptions.py 390 B

123456789101112131415
  1. """Custom Exceptions."""
  2. class InvalidStylePropError(TypeError):
  3. """Custom Type Error when style props have invalid values."""
  4. pass
  5. class ImmutableStateError(AttributeError):
  6. """Raised when a background task attempts to modify state outside of context."""
  7. class LockExpiredError(Exception):
  8. """Raised when the state lock expires while an event is being processed."""