class NoPrefixMapped

Attributes

prefix[RW]
property[RW]

Public Class Methods

new(property, layout, prefix) click to toggle source
Calls superclass method
# File lib/jekyll/exceptions/NoPrefixMapped.rb, line 3
def initialize property, layout, prefix
  @prefix, @property = prefix, property
  super("Their is no mapping defined for #{prefix} in context to #{property}\n in layout: '#{layout}'.")
end