class Sprockets::Base

def find_asset!(*args)

If the asset is not found an error will be raised.

Find asset by logical path or expanded path.
def find_asset!(*args)
  uri, _ = resolve!(*args)
  if uri
    load(uri)
  end
end