Enum reql::error::RuntimeError []

pub enum RuntimeError {
    QueryLogic(String),
    NonExistence(String),
    ResourceLimit(String),
    User(String),
    Internal(String),
    Timeout(String),
    Availability(AvailabilityError),
    Permission(String),
}

The parent class of all runtime errors

All errors on the server unrelated to compilation. Programs may use this to catch any runtime error, but the server will always return a more specific error class.

Variants

The query contains a logical impossibility, such as adding a number to a string.

Trait Implementations

impl Debug for RuntimeError
[src]

Formats the value using the given formatter.

impl Display for RuntimeError

Formats the value using the given formatter.

impl Error for RuntimeError

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<AvailabilityError> for RuntimeError

Performs the conversion.