class Hanami::Assets::MissingManifestFileError

This error is raised when the application starts but can't be load the manifest file.

@since 0.1.0 @api private

Public Class Methods

new(path) click to toggle source
Calls superclass method
# File lib/hanami/assets/config/manifest.rb, line 11
def initialize(path)
  super("Can't read manifest: #{path}")
end