class Hyrax::Ingest::Errors::RecordNotFound

Public Class Methods

new(model_class_name, where_clause) click to toggle source
Calls superclass method
# File lib/hyrax/ingest/errors.rb, line 93
def initialize(model_class_name, where_clause)
  super("Record of type '#{model_class_name}' could not be found where #{where_clause}.")
end