class Renderror::NotFound

Public Instance Methods

status() click to toggle source
# File lib/renderror/not_found.rb, line 3
def status
  '404'
end

Private Instance Methods

default_detail() click to toggle source
# File lib/renderror/not_found.rb, line 13
def default_detail
  I18n.t(:"renderror.not_found.detail")
end
default_title() click to toggle source
# File lib/renderror/not_found.rb, line 9
def default_title
  I18n.t(:"renderror.not_found.title")
end