use thiserror::Error;
#[derive(Error, Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Debug)]
pub enum Sec1PemError {
#[error("there was no EcPrivateKey sequence in this file.")]
NoECPrivateKey,
#[error("There was an error while parsing the sequence.")]
ParseError,
}