QueryExceptionEvent enum Null safety
Categorizations of query failures for QueryException.
Constructors
- QueryExceptionEvent()
 - 
          
            const
 
Values
- conflict → const QueryExceptionEvent
 - 
  
This event is used when the underlying PersistentStore reports that a unique constraint was violated.
Controllers interpret this exception to return a status code 409 by default.
 - transport → const QueryExceptionEvent
 - 
  
This event is used when the underlying PersistentStore cannot reach its database.
Controllers interpret this exception to return a status code 503 by default.
 - input → const QueryExceptionEvent
 - 
  
This event is used when the underlying PersistentStore reports an issue with the data used in a Query.
Controllers interpret this exception to return a status code 400 by default.
 
Properties
Methods
- 
  noSuchMethod(
Invocation invocation) → dynamic  - 
  Invoked when a non-existent method or property is accessed.
  inherited
 - 
  toString(
) → String  - 
  A string representation of this object.
  inherited
 
Operators
- 
  operator ==(
Object other) → bool  - 
  The equality operator.
  inherited
 
Constants
- 
    values
  → const List<
QueryExceptionEvent>  - 
  A constant List of the values in this enum, in order of their declaration.
  
    
[conflict, transport, input]