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