class Nanoc::Int::Errors::CannotGetCompiledContentOfBinaryItem
Error that is raised when the compiled content of a binary item is attempted to be accessed.
Public Class Methods
new(rep)
click to toggle source
@param [Nanoc::Int::ItemRep] rep The binary item representation whose compiled content was attempted to be accessed
Calls superclass method
# File lib/nanoc/base/errors.rb, line 177 def initialize(rep) super("You cannot access the compiled content of a binary item representation (but you can access the path). The offending item rep is #{rep.inspect}.") end