1use thiserror::Error;
23/// An error that can occur in a FunLess function.
4#[derive(Error, Debug)]
5pub enum FLError {
6#[error("error while executing function: {0}")]
7ExecError(String),
89#[error("function not implemented")]
10NotImplemented,
11}