summaryrefslogtreecommitdiff
path: root/util.lua
blob: 109ac676b417f3f18b88d78a0eedd95731bd2e9a (plain)
1
2
3
4
5
6
7
local function perr(err,what)
	if err then error(what..": "..err) end
end

return {
	perr=perr,
}