state:empty
state:<translated
state:>=translated
state:needs-editing
has:suggestion
has:variant
has:screenshot
has:label
has:context
state:<translated AND NOT has:suggestion
has:comment
has:check
state:approved
state:translated
Loading…
New source string
testing_project / Documentation: reference/reference_lua/box_error/set — English
The string uses three dots (...) instead of an ellipsis character (…)
Reset
Additional explanation to clarify meaning or usage of the string.
Additional comma-separated flags to influence Weblate behavior.
read-only is inherited from testing_project/Documentation: reference/reference_lua/box_error/set — English.
read-only
local error1 = box.error.new({ code = 500, reason = 'Custom error 1' })
local error2 = box.error.new({ code = 505, reason = 'Custom error 2' })
-- Raise the first error --
box.error(error1)
--[[
---
- error: Custom error 1
...
--]]
-- Get the last error --
box.error.last()
--[[
---
- Custom error 1
...
--]]
-- Set the second error as the last error --
box.error.set(error2)
--[[
---
...
--]]
-- Get the last error --
box.error.last()
--[[
---
- Custom error 2
...
--]]