UNPKG

231 BPlain TextView Raw
1export class RelationalDBParsingException extends Error {
2 constructor(message: string, stack?: string) {
3 super(message);
4
5 Object.setPrototypeOf(this, RelationalDBParsingException.prototype);
6 this.stack = stack;
7 }
8}