class OFlow::NotFoundError
An Exception indicating an item was not found.
Public Class Methods
new(name, type, id)
click to toggle source
Calls superclass method
# File lib/oflow/errors.rb, line 49 def initialize(name, type, id) super("The #{type} identified as '#{id}' was not found in #{name}.") end