UNPKG

@rightcapital/exceptions

Version:

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

9 lines 318 B
import { BaseException } from './base.exception'; /** * Exception that represents error in the program logic. This kind of exception should lead directly to a fix in your code. * @public */ export declare class LogicException extends BaseException { name: string; } //# sourceMappingURL=logic.exception.d.ts.map