kona_derive/errors/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
//! Error types for the kona derivation pipeline.

mod attributes;
pub use attributes::BuilderError;

mod stages;
pub use stages::BatchDecompressionError;

mod pipeline;
pub use pipeline::{PipelineEncodingError, PipelineError, PipelineErrorKind, ResetError};

mod sources;
pub use sources::{BlobDecodingError, BlobProviderError};