nowjs-core
Version:
NowCanDo Javascript Core [nowjs-core] is a library written by TypeScript code maintains under Apache 2.0 licence
11 lines (10 loc) • 368 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const index_1 = require("../../exceptions/index");
class DatabaseException extends index_1.CodedException {
constructor(code, message, innerError) {
super(code, message, innerError);
this.name = 'DatabaseException';
}
}
exports.DatabaseException = DatabaseException;