Exception: Hyperdrive::Errors::MethodNotAllowed

Inherits:
HTTPError
  • Object
show all
Defined in:
lib/hyperdrive/errors/method_not_allowed.rb

Instance Method Summary collapse

Constructor Details

#initialize(request_method) ⇒ MethodNotAllowed

Returns a new instance of MethodNotAllowed.



4
5
6
# File 'lib/hyperdrive/errors/method_not_allowed.rb', line 4

def initialize(request_method)
  @request_method = request_method
end

Instance Method Details

#http_status_codeObject



12
13
14
# File 'lib/hyperdrive/errors/method_not_allowed.rb', line 12

def http_status_code
  405
end

#messageObject



8
9
10
# File 'lib/hyperdrive/errors/method_not_allowed.rb', line 8

def message
  "A request was made using a request method (#{@request_method}) not supported by this resource."
end