Exception: Jsapi::Controller::OperationNotFound

Inherits:
StandardError
  • Object
show all
Defined in:
lib/jsapi/controller/methods.rb

Overview

Raised when no operation with the specified name could be found.

Instance Method Summary collapse

Constructor Details

#initialize(operation_name) ⇒ OperationNotFound

Returns a new instance of OperationNotFound.



9
10
11
# File 'lib/jsapi/controller/methods.rb', line 9

def initialize(operation_name)
  super("operation not found: #{operation_name}")
end