dctap/tap_reader_warning.rs
1use thiserror::Error;
2
3#[derive(Error, Debug)]
4
5pub enum TapReaderWarning {
6 #[error("Empty property with fields found at line: {line}")]
7 EmptyProperty { line: u64 },
8
9 #[error("Extends label found: {label} without extends ID at line {line}")]
10 ExtendsLabelWithoutExtendsId { label: String, line: u64 },
11}