kabel/libkabel/src/error.rs

10 lines
226 B
Rust
Raw Normal View History

2024-01-16 22:59:34 +00:00
use crate::diagnostics::Diagnostic;
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum KError {
InternalError(InternalError),
UserError(Vec<Diagnostic>)
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum InternalError {}