border_core/
error.rs

1//! Errors in the library.
2use thiserror::Error;
3
4/// Errors in the library.
5#[derive(Error, Debug)]
6pub enum LrrError {
7    /// Record key error.
8    #[error("Record key error: {0}")]
9    RecordKeyError(String),
10
11    /// Record value type error.
12    #[error("Record value type error: {0}")]
13    RecordValueTypeError(String),
14}