1use thiserror::Error;
23#[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.")]
8DefaultError,
9}