dctap/
tap_reader_warning.rs

1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Error, Debug)]

pub enum TapReaderWarning {
    #[error("Empty property with fields found at line: {line}")]
    EmptyProperty { line: u64 },

    #[error("Extends label found: {label} without extends ID at line {line}")]
    ExtendsLabelWithoutExtendsId { label: String, line: u64 },
}