1
2023-08-03 12:21:59 -04:00

8 lines
207 B
Rust

//! Error types for this library
#[derive(Debug, thiserror::Error)]
pub enum Error {
#[error("Invalid IPv6 prefix length: {0}. Must be one of 32, 40, 48, 56, 64, or 96")]
InvalidPrefixLength(u8),
}