mirror of
https://github.com/nushell/nushell.git
synced 2025-06-08 19:17:16 +02:00
20 lines
540 B
Rust
20 lines
540 B
Rust
mod chained_error;
|
|
pub mod cli_error;
|
|
mod compile_error;
|
|
mod config_error;
|
|
mod labeled_error;
|
|
mod parse_error;
|
|
mod parse_warning;
|
|
pub mod shell_error;
|
|
|
|
pub use cli_error::{
|
|
ReportMode, format_shell_error, report_parse_error, report_parse_warning, report_shell_error,
|
|
report_shell_warning,
|
|
};
|
|
pub use compile_error::CompileError;
|
|
pub use config_error::ConfigError;
|
|
pub use labeled_error::{ErrorLabel, LabeledError};
|
|
pub use parse_error::{DidYouMean, ParseError};
|
|
pub use parse_warning::ParseWarning;
|
|
pub use shell_error::ShellError;
|