rust_parser/ber_tlv/
tlv_parser_error.rs1use std::{error::Error, fmt::Display};
2
3#[derive(Debug)]
4pub enum TlvParserError {}
5
6impl Display for TlvParserError {
7 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
8 write!(f, "{:#?}", self)
9 }
10}
11
12impl Error for TlvParserError {}