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) • 365 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const index_1 = require("../exceptions/index");
class SecurityException extends index_1.CodedException {
constructor(code, message, innerError) {
super(code, message, innerError);
this.name = 'SecurityException';
}
}
exports.SecurityException = SecurityException;