1 2 3 4 5 6 7 8
use thiserror::Error; #[derive(Error, Debug)] /// The RipGen error type. pub enum RipGenError { #[error("Unable to parse provided domain.")] ErrorParsingDomain(String), }