replace runtime err with require err

This commit is contained in:
highflowey 2024-08-23 16:24:18 +03:30
parent 9414a9fc29
commit 1708c05522

View file

@ -58,11 +58,9 @@ pub async fn lua_require(lua: &Lua, path: String) -> LuaResult<LuaMultiValue> {
let require_path_abs = resolve_path(&parent_path.join(&require_path_rel))
.await
.map_err(|_| {
LuaError::runtime(format!(
"Can not require '{}' as it does not exist",
require_path_rel.to_string_lossy(),
))
})?;
RequireError::InvalidRequire(require_path_rel.to_string_lossy().to_string())
})
.into_lua_err()?;
context::RequireContext::require(lua, require_path_rel, require_path_abs)
.await