package com.bytezone.diskbrowser.visicalc; // -----------------------------------------------------------------------------------// class Error extends ConstantFunction // -----------------------------------------------------------------------------------// { // ---------------------------------------------------------------------------------// Error (Cell cell, String text) // ---------------------------------------------------------------------------------// { super (cell, text); assert text.startsWith ("@ERROR") : text; valueResult = ValueResult.ERROR; valueType = ValueType.NUMBER; } }