Exception: FastTrack::MethodNotAllowedException

Inherits:
Exception
  • Object
show all
Defined in:
lib/exceptions.rb

Overview

Method not allowed

Instance Method Summary collapse

Constructor Details

#initialize(message = 'You tried to access an endpoint with an invalid method') ⇒ MethodNotAllowedException

Returns a new instance of MethodNotAllowedException.



33
34
35
# File 'lib/exceptions.rb', line 33

def initialize(message = 'You tried to access an endpoint with an invalid method')
  super(message)
end