blob: b5cd9c332bccec026dac2e3108f3461f9d50dfce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#[derive(Debug)]
pub struct Exception {
pub message: String,
pub code: i64,
}
#[derive(Debug)]
pub struct RuntimeException {
pub message: String,
pub code: i64,
}
#[derive(Debug)]
pub struct UnexpectedValueException {
pub message: String,
pub code: i64,
}
|