Exception: SimpleEndpoint::OperationIsNotHandled

Inherits:
StandardError
  • Object
show all
Defined in:
lib/simple_endpoint/errors.rb

Constant Summary collapse

OPERATION_IS_NOT_HANDLED_ERROR =
'Current operation result is not handled at specified cases'

Instance Method Summary collapse

Constructor Details

#initializeOperationIsNotHandled

Returns a new instance of OperationIsNotHandled.



7
8
9
# File 'lib/simple_endpoint/errors.rb', line 7

def initialize
  super(OPERATION_IS_NOT_HANDLED_ERROR)
end