class RbSys::PackageNotFoundError

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