class Csvlint::ErrorMessage
Attributes
category[R]
column[R]
constraints[R]
content[R]
row[R]
type[R]
Public Class Methods
new(type, category, row, column, content, constraints)
click to toggle source
# File lib/csvlint/error_message.rb, line 5 def initialize(type, category, row, column, content, constraints) @type = type @category = category @row = row @column = column @content = content @constraints = constraints end