f7
f7 is a spreadsheet formula execution library
git clone https://git.vogt.world/f7.git
Log | Files | README.md | LICENSE.md
← All files
name: src/main/java/io/protobase/f7/errors/NAException.java
-rw-r--r--
337
 1package io.protobase.f7.errors;
 2
 3/**
 4 * NA Error represents an error where a formula or function called with the wrong number of arguments.
 5 */
 6public class NAException extends F7Exception {
 7  public NAException(String message) {
 8    super(F7ExceptionName.NA, message);
 9  }
10
11  public NAException() {
12    super(F7ExceptionName.NA);
13  }
14}