class Exceptionally::NotFound
Public Class Methods
new(message = nil)
click to toggle source
Calls superclass method
Exceptionally::Error::new
# File lib/exceptionally/exceptions.rb, line 45 def initialize(message = nil) super(message, 404, "Not Found") end