class Giter8::PropertyNotFoundError
PropertyNotFoundError
indicates that a template referenced a variable not defined by the property pairs provided to the renderer.
Public Class Methods
new(prop_name, source, line, column)
click to toggle source
Calls superclass method
# File lib/giter8/error.rb, line 9 def initialize(prop_name, source, line, column) super("Property `#{prop_name}' is not defined at #{source}:#{line}:#{column}") end