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/ParseException.java
-rw-r--r--
340
 1package io.protobase.f7.errors;
 2
 3/**
 4 * Error represents something went wrong when parsing, and (in very rare cases) executing.
 5 */
 6public class ParseException extends F7Exception {
 7  public ParseException(String message) {
 8    super(F7ExceptionName.PARSE, message);
 9  }
10
11  public ParseException() {
12    super(F7ExceptionName.PARSE);
13  }
14}