class Renderful::Error::EntryNotFoundError

Attributes

entry_id[R]

Public Class Methods

new(entry_id, *args) click to toggle source
Calls superclass method
# File lib/renderful/error/entry_not_found_error.rb, line 8
def initialize(entry_id, *args)
  @entry_id = entry_id

  super "Cannot find entry #{@entry_id}", *args
end