class RbSys::PackageNotFoundError

Raised when a package is not found from the Cargo metadata.

def initialize(name)

def initialize(name)
  msg = <<~MSG.chomp.tr("\n", " ")
    Could not find Cargo package metadata for #{@name.inspect}. Please
    check that #{@name.inspect} matches the crate name in your
    Cargo.toml."
  MSG
  super(msg)
end