mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 22:07:37 +03:00
11 lines
149 B
Rust
11 lines
149 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum Error {
|
|
#[error(transparent)]
|
|
Other {
|
|
message: String,
|
|
}
|
|
}
|
|
|
|
fn main() {}
|