7 lines
126 B
Rust
7 lines
126 B
Rust
|
use thiserror::Error;
|
||
|
|
||
|
#[derive(Debug, Error)]
|
||
|
pub(crate) enum UserError {
|
||
|
#[error("User aborted the operation.")]
|
||
|
Aborted
|
||
|
}
|