Exception: Giter8::FormatterNotFoundError
- 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
-
#initialize(name, source, line, column) ⇒ FormatterNotFoundError
constructor
A new instance of FormatterNotFoundError.
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 |