dmolony-DiskBrowser/src/com/bytezone/diskbrowser/visicalc/Error.java

12 lines
240 B
Java
Raw Normal View History

2016-03-09 10:38:53 +00:00
package com.bytezone.diskbrowser.visicalc;
2017-03-20 01:45:14 +00:00
class Error extends ConstantFunction
2016-03-09 10:38:53 +00:00
{
public Error (Cell cell, String text)
2016-03-09 10:38:53 +00:00
{
super (cell, text);
2017-03-18 09:21:11 +00:00
assert text.startsWith ("@ERROR") : text;
2017-03-23 13:30:41 +00:00
valueResult = ValueResult.ERROR;
2016-03-09 10:38:53 +00:00
}
}