class Exceptionally::NotAllowed

Public Class Methods

new(message = nil) click to toggle source
Calls superclass method Exceptionally::Error::new
# File lib/exceptionally/exceptions.rb, line 51
def initialize(message = nil)
  super(message, 405, "Method Not Allowed")
end