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/DivException.java
-rw-r--r--
320
 1package io.protobase.f7.errors;
 2
 3/**
 4 * Represents attempted division where the divisor is 0, regardless of dividend.
 5 */
 6public class DivException extends F7Exception {
 7  public DivException(String message) {
 8    super(F7ExceptionName.DIV, message);
 9  }
10
11  public DivException() {
12    super(F7ExceptionName.DIV);
13  }
14}