class Giter8::FormatterNotFoundError

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

Public Class Methods

new(name, source, line, column) click to toggle source
Calls superclass method
# File lib/giter8/error.rb, line 17
def initialize(name, source, line, column)
  super("Formatter `#{name}' is not defined at #{source}:#{line}:#{column}")
end