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/js/errors/DivException.ts
-rw-r--r--
228
1import { F7Exception } from "./F7Exception";
2import { F7ExceptionName } from "./F7ExceptionName";
3
4export class DivException extends F7Exception {
5  constructor(message?: string) {
6    super(F7ExceptionName.DIV, message);
7  }
8}