use fix_error::Error; use crate::VmError; pub(crate) fn vm_err(msg: impl Into) -> VmError { VmError::Uncatchable(Error::eval_error(msg.into())) }