UNPKG

@rightcapital/exceptions

Version:

TypeScript Exception definitions inspired by PHP SPL Exceptions etc...

16 lines 548 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LogicException = void 0; const base_exception_1 = require("./base.exception"); /** * Exception that represents error in the program logic. This kind of exception should lead directly to a fix in your code. * @public */ class LogicException extends base_exception_1.BaseException { constructor() { super(...arguments); this.name = 'LogicException'; } } exports.LogicException = LogicException; //# sourceMappingURL=logic.exception.js.map