enum Liquid::Context::ErrorMode
Overview
Context error mode.
Defined in:
liquid/context.crEnum Members
-
Strict =
0 -
Raise exceptions on any error but
UndefinedVariable, that can be accessed later byContext#errors. -
Warn =
1 -
Like
Laxmode, but the errors can be accessed later byContext#errors. -
Lax =
2 -
Do the best to render something without raising any exceptions.