class SBSM::InvalidDataError
Attributes
data[R]
key[R]
value[R]
Public Class Methods
new(msg, key, value)
click to toggle source
Calls superclass method
# File lib/sbsm/validator.rb, line 40 def initialize(msg, key, value) super("#{msg.to_s} #{key.to_s[0..79]} #{value.to_s[0..79]}") @key = key @value = value end