class Inferno::Exceptions::ParentNotLoadedException

Public Class Methods

new(klass, id) click to toggle source
Calls superclass method
# File lib/inferno/exceptions.rb, line 43
def initialize(klass, id)
  super("No #{klass.name.demodulize} found with id '#{id}'")
end