class CSVObject
Attributes
content[RW]
error_description[RW]
error_warning[RW]
guideline[RW]
html_path[RW]
Public Class Methods
new(error_warning, guideline, error_description, content, html_path)
click to toggle source
# File lib/html_compilation/classes/setup/retrieval.rb, line 83 def initialize(error_warning, guideline, error_description, content, html_path) @error_warning = error_warning @guideline = guideline @error_description = error_description @content = content @html_path = html_path end