exceptions.py 504 B

123456789101112131415161718192021
  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."""
  9. class MatchTypeError(TypeError):
  10. """Raised when the return types of match cases are different."""
  11. pass