blob: e79c971a6b8b7adc567b39977df965077df17db1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#[derive(Debug)]
pub struct RuntimeException {
pub message: String,
pub code: i64,
}
#[derive(Debug)]
pub struct UnexpectedValueException {
pub message: String,
pub code: i64,
}
|