//! Error Module for [ParseLogLevelError]
use Error;
use ;
const ERROR_MESSAGE: &str = "failed to convert a string that doesn't match a log level";
/// Error struct used and thrown when calling [`from_str`] or [`try_from`] on a String that doesn't contain a valid [`Level`]
///
/// [`Level`]: crate::Level
/// [`from_str`]: std::str::FromStr::from_str
/// [`try_from`]: TryFrom::try_from
;