Skip to content

Commit

Permalink
Give a more descriptive error messsage when someone tries to write an…
Browse files Browse the repository at this point in the history
… object of an unsupported class.
  • Loading branch information
ananelson committed Mar 21, 2009
1 parent 765b7dc commit 4abf548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/row.rb
Expand Up @@ -148,7 +148,7 @@ def write(col, label, style)
when ExcelFormula
@cells << FormulaCell.new(self, col, style_index, label)
else
raise label.class.name
raise "You are trying to write an object of class #{label.class.name} to a spreadsheet. Please convert this to a supported class such as String."
end
end

Expand Down

0 comments on commit 4abf548

Please sign in to comment.