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/RefException.java
-rw-r--r--
333
 1package io.protobase.f7.errors;
 2
 3/**
 4 * Ref error represents a reference or range that is empty, out of bounds, or does not exist.
 5 */
 6public class RefException extends F7Exception {
 7  public RefException(String message) {
 8    super(F7ExceptionName.REF, message);
 9  }
10
11  public RefException() {
12    super(F7ExceptionName.REF);
13  }
14}