Exception: Nucleus::Errors::AdapterMissingImplementationError

Inherits:
AdapterError
  • Object
show all
Defined in:
lib/nucleus/core/errors/adapter_missing_implementation_error.rb

Overview

The AdapterMissingImplementationError shall be thrown when the API requests an adapter to execute an action, e.g. update an application, but the adapter does not (yet) support this functionality.

Instance Attribute Summary

Attributes inherited from AdapterError

#ui_error

Instance Method Summary collapse

Constructor Details

#initialize(message, ui_error = ErrorMessages::MISSING_IMPLEMENTATION) ⇒ AdapterMissingImplementationError

initialize with default error to be 501



7
8
9
# File 'lib/nucleus/core/errors/adapter_missing_implementation_error.rb', line 7

def initialize(message, ui_error = ErrorMessages::MISSING_IMPLEMENTATION)
  super(message, ui_error)
end