proof_of_sql/base/scalar/error.rs
use alloc::string::String;
use snafu::Snafu;
#[derive(Snafu, Debug)]
/// These errors occur when a scalar conversion fails.
pub enum ScalarConversionError {
#[snafu(display("Overflow error: {error}"))]
/// This error occurs when a scalar is too large to be converted.
Overflow {
/// The underlying error
error: String,
},
}