class MonkeyBusiness::HttpMethodError

Raise this error for unsupported HTTP methods

Public Class Methods

new(method_name) click to toggle source
Calls superclass method
# File lib/exceptions.rb, line 9
def initialize(method_name)
  super("Unsupported HTTP method: #{method_name}")
end