enum Liquid::Context::ErrorMode
Overview
Context error mode.
Defined in:
liquid/context.crEnum Members
-
Strict =
0 -
Raises exceptions on any error other than
UndefinedVariable, which are saved and can be accessed later throughContext#errors. -
Warn =
1 -
Similar to
Laxmode, but the errors can be accessed later throughContext#errors. -
Lax =
2 -
Attempts to render the template without raising any exceptions.