class Bundler::Molinillo::NoSuchDependencyError

def message

that had this dependency.
The error message for the missing dependency, including the specifications
def message
  sources = required_by.map { |r| "`#{r}`" }.join(' and ')
  message = "Unable to find a specification for `#{dependency}`"
  message += " depended upon by #{sources}" unless sources.empty?
  message
end