class Quiver::Mapper::NotFoundError

Public Instance Methods

code() click to toggle source
# File lib/quiver/mapper/not_found_error.rb, line 19
def code
  :not_found_error
end
detail() click to toggle source
# File lib/quiver/mapper/not_found_error.rb, line 7
def detail
  type
end
path() click to toggle source
# File lib/quiver/mapper/not_found_error.rb, line 11
def path
  "/#{subject}"
end
serialization_type() click to toggle source
# File lib/quiver/mapper/not_found_error.rb, line 23
def serialization_type
  'Error'
end
status() click to toggle source
# File lib/quiver/mapper/not_found_error.rb, line 15
def status
  404
end
title() click to toggle source
# File lib/quiver/mapper/not_found_error.rb, line 3
def title
  type
end