class Teaspoon::AssetNotServableError

Public Class Methods

new(msg_or_options) click to toggle source
Calls superclass method
# File lib/teaspoon/exceptions.rb, line 141
def initialize(msg_or_options)
  super(build_message(msg_or_options) do |options|
    "Unable to serve asset: expected \"#{options[:filename] || 'unknown file'}\" to be within a registered asset path."
  end)
end