Skip to main content

cubek_interpolate/
error.rs

1use thiserror::Error;
2
3#[derive(Error, Debug, Clone)]
4/// This error should be caught and properly handled.
5pub enum InterpolateError {
6    /// Default error for unimplemented modes or other generic errors.
7    #[error("An error occurred during interpolation.")]
8    DefaultError,
9}