class Interaktor::Error::OptionError

Attributes

options[R]

@return [Hash{Symbol=>Object}]

Public Class Methods

new(interaktor, options) click to toggle source

@param interaktor [Class] @param options [Hash{Symbol=>Object}]

Calls superclass method Interaktor::Error::Base::new
# File lib/interaktor/error/option_error.rb, line 7
def initialize(interaktor, options)
  super(interaktor)

  @options = options
end

Public Instance Methods

message() click to toggle source

@return [String] @abstract

# File lib/interaktor/error/option_error.rb, line 15
def message
  raise NoMethodError
end