class Propshaft::MissingAssetError

Raised when LoadPath cannot find the requested asset

Public Class Methods

new(path) click to toggle source
Calls superclass method
# File lib/propshaft/errors.rb, line 9
def initialize(path)
  super
  @path = path
end

Public Instance Methods

message() click to toggle source
# File lib/propshaft/errors.rb, line 14
def message
  "The asset '#{@path}' was not found in the load path."
end