class Propshaft::MissingAssetError
Raised when LoadPath
cannot find the requested asset
Public Class Methods
Source
# File lib/propshaft/errors.rb, line 9 def initialize(path) super @path = path end
Calls superclass method
Public Instance Methods
Source
# File lib/propshaft/errors.rb, line 14 def message "The asset '#{@path}' was not found in the load path." end