class KeyError

当指定的键未找到时抛出。它是 IndexError 的子类。

h = {"foo" => :bar}
h.fetch("foo") #=> :bar
h.fetch("baz") #=> KeyError: key not found: "baz"