class Curio::NotFoundError

Error raised when fetch cannot find an item with key

Public Class Methods

new(key) click to toggle source
Calls superclass method
# File lib/curio.rb, line 9
def initialize(key)
  @key = key
  super "Item not found in collection with key: #{key}"
end