class Nucleus::Errors::AdapterMissingImplementationError
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.
Public Class Methods
new(message, ui_error = ErrorMessages::MISSING_IMPLEMENTATION)
click to toggle source
initialize with default error to be 501
Calls superclass method
Nucleus::Errors::AdapterError::new
# 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