Exception: Sequence::AmbiguousParameterValue

Inherits:
SequenceError show all
Defined in:
lib/lucid/sequence/sequence_errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(name, phrase, table) ⇒ AmbiguousParameterValue

Returns a new instance of AmbiguousParameterValue.



51
52
53
54
# File 'lib/lucid/sequence/sequence_errors.rb', line 51

def initialize(name, phrase, table)
  msg = "The sequence parameter '#{name}' has value '#{phrase}' and '#{table}'."
  super(msg)
end