Exception: Giter8::FormatterNotFoundError

Inherits:
Error
  • Object
show all
Defined in:
lib/giter8/error.rb

Overview

FormatterNotFoundError indicates that a template variable referenced a formatter not known by the renderer.

Instance Method Summary collapse

Constructor Details

#initialize(name, source, line, column) ⇒ FormatterNotFoundError

Returns a new instance of FormatterNotFoundError.



17
18
19
# File 'lib/giter8/error.rb', line 17

def initialize(name, source, line, column)
  super("Formatter `#{name}' is not defined at #{source}:#{line}:#{column}")
end