Exception: Liquidscript::UnexpectedError

Inherits:
CompileError show all
Defined in:
lib/liquidscript/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(expected, got) ⇒ UnexpectedError



27
28
29
30
31
32
# File 'lib/liquidscript/errors.rb', line 27

def initialize(expected, got)
  @expected = expected
  @got      = got

  super build_error_message
end