UNPKG

ts-db-helper

Version:
39 lines (38 loc) 817 B
/** * @public * @class BadColumnDeclarationError * * @description * thrown when a column declaration is detected * * @see Error * * @author Olivier Margarit * @since 0.1 */ export declare class BadColumnDeclarationError implements Error { message: string; /** * @public * @property {string} name error name */ name: string; /** * @public * @property {any} stack error stack trace */ stack: any; /** * @public * @constructor * @param {string} message message explaining in details error */ constructor(message: string); /** * @public * @method toString convert error to string * * @return {string} string represation of the error */ toString(): string; }