class Angus::Remote::MethodArgumentError

Public Class Methods

new(method) click to toggle source
# File lib/angus/remote/exceptions.rb, line 38
def initialize(method)
  @method = method
end

Public Instance Methods

message() click to toggle source
# File lib/angus/remote/exceptions.rb, line 42
def message
  "Invalid http method: #@method"
end