UNPKG

nowjs-core

Version:

NowCanDo Javascript Core [nowjs-core] is a library written by TypeScript code maintains under Apache 2.0 licence

9 lines (8 loc) 251 B
import { Exception } from './index'; export declare class CodedException extends Exception { private code; constructor(code: number, message: string, innerError?: Error); get Code(): number; toJSON(): string; toString(): string; }