1/// Errors that can occur when creating a sampling configuration.
2#[derive(Debug, Eq, PartialEq, thiserror::Error)]
3pub enum SamplingError {
4/// An integer value exceeded the allowed range
5#[error("Integer overflow: {0}")]
6IntegerOverflow(String),
7}