UNPKG

@awayjs/core

Version:
9 lines (7 loc) 255 B
import { ErrorBase } from './ErrorBase'; export class DocumentError extends ErrorBase { public static DOCUMENT_DOES_NOT_EXIST: string = 'documentDoesNotExist'; constructor(message: string = 'DocumentError', id: number = 0) { super(message, id); } }