class Ridley::Errors::HTTPUnknownMethod

Attributes

method[R]

Public Class Methods

new(method) click to toggle source
# File lib/ridley/errors.rb, line 141
def initialize(method)
  @method  = method
  @message = "unknown http method: #{method}"
end