class PerseusMatch::CheckFailedError

Attributes

operator[R]
pm[R]
threshold[R]
value[R]

Public Class Methods

new(pm, value, threshold, operator) click to toggle source
# File lib/perseus_match.rb, line 187
def initialize(pm, value, threshold, operator)
  @pm, @value, @threshold, @operator = pm, value, threshold, operator
end

Public Instance Methods

to_s() click to toggle source
# File lib/perseus_match.rb, line 191
def to_s
  "FAILED: #{value} #{operator} #{threshold}"
end