1//! This module defines the error that might occur while using passg.
23/// 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")]
7ParseError(String),
8}