class CommandServiceObject::Failure

Attributes

command[R]

Public Class Methods

new(message: nil, command: {}) click to toggle source
Calls superclass method
# File lib/command_service_object/failure.rb, line 5
def initialize(message: nil, command: {})
  @command = command
  super(message)
end