Exception: Runner::MissingArgument

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/shared_infrastructure/runner/base.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(msg, opts) ⇒ MissingArgument

Returns a new instance of MissingArgument.



124
125
126
127
# File 'lib/shared_infrastructure/runner/base.rb', line 124

def initialize(msg, opts)
  @opts = opts
  super msg
end

Instance Attribute Details

#msgObject (readonly)

Returns the value of attribute msg.



128
129
130
# File 'lib/shared_infrastructure/runner/base.rb', line 128

def msg
  @msg
end

#optsObject (readonly)

Returns the value of attribute opts.



129
130
131
# File 'lib/shared_infrastructure/runner/base.rb', line 129

def opts
  @opts
end