Skip to main content

HandlerError

Type Alias HandlerError 

Source
pub type HandlerError = ProcessingError;

Aliased Type§

pub enum HandlerError {
    Retryable(Error),
    NonRetryable(Error),
}

Variants§

§

Retryable(Error)

A transient error occurred. The operation should be retried.

§

NonRetryable(Error)

A permanent error occurred. The operation should not be retried.