1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
// Copyright (c) The Diem Core Contributors
// SPDX-License-Identifier: Apache-2.0
use std::fmt;
/// This struct represents an error that is returned during the
/// testcase generation process.
#[derive(Debug)]
pub struct VMError {
message: String,
}
impl VMError {
pub fn new(message: String) -> VMError {
VMError { message }
}
}
impl fmt::Display for VMError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.message)
}
}