Skip to main content

luaur_require/records/
runtime_error_handler.rs

1use crate::records::error_handler::ErrorHandler;
2
3#[derive(Debug, Clone)]
4pub struct RuntimeErrorHandler {
5    pub(crate) error_prefix: alloc::string::String,
6    pub(crate) error_message: alloc::string::String,
7}