passg_lib/
errors.rs

1//! This module defines the error that might occur while using passg.
2
3/// These are the errors that can occur while generating a password
4#[derive(Debug, Clone, PartialEq, Eq, Hash, thiserror::Error)]
5pub enum Error {
6    #[error("could not parse")]
7    ParseError(String),
8}