class Webpacked::Manifest::EntryMissingError

Raised if an entry point does not exist in the webpack manifest

Public Class Methods

new(entry) click to toggle source
Calls superclass method
# File lib/webpacked/manifest.rb, line 19
def initialize(entry)
  super "Entry point is missed: #{entry}"
end