MustacheException constructor

MustacheException(
  1. IContext? context,
  2. String code,
  3. String message,
  4. int line,
  5. int column,
)

Implementation

MustacheException(
    IContext? context, String code, String message, int line, int column)
    : super(
          context != null ? ContextResolver.getTraceId(context) : null,
          code,
          line != 0 || column != 0
              ? '$message at line $line and column $column'
              : message);