class Hanami::Assets::MissingManifestAssetError
This error is raised when an asset is referenced from the DOM, but it's not present in the manifest
@since 0.1.0 @api private
Public Class Methods
new(asset, manifest_path)
click to toggle source
Calls superclass method
# File lib/hanami/assets/config/manifest.rb, line 22 def initialize(asset, manifest_path) super("Can't find asset `#{asset}' in manifest (#{manifest_path})") end