napi-ldap
Version:
OpenLDAP bindings for node
12 lines (8 loc) • 310 B
JavaScript
/*jshint globalstrict:true, node:true, trailing:true, mocha:true unused:true */
;
module.exports = function LDAPError(message) {
Error.captureStackTrace(this, this.constructor);
this.name = this.constructor.name;
this.message = message;
};
require("util").inherits(module.exports, Error);