public class FormulaJsonError
extends JsonError
Represents the formula error in the json.
-
Constructor Summary
Constructors
Constructs a new FormulaJsonError object with the specified error message, worksheet name, row, column, and formula.
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
public FormulaJsonError(String errorMessage,
String worksheetName,
int row,
int column,
String formula)
Constructs a new FormulaJsonError object with the specified error message, worksheet name, row, column, and formula.
- Parameters:
errorMessage
- The error message associated with the formula error.
worksheetName
- The name of the worksheet where the formula error occurred.
row
- The row index where the formula error occurred.
column
- The column index where the formula error occurred.
formula
- The formula that caused the error.
-
Method Details
-
getWorksheetName
public String getWorksheetName()
Get the worksheet name.
-
getRow
public int getRow()
Get the row index.
-
getColumn
public int getColumn()
Get the column index.
-