blob: 98b3e52985c0dff689852f9001c077613ca8c91c [file] [log] [blame]
"use strict";
exports.NOT_IMPLEMENTED = function (target, nameForErrorMessage) {
return function () {
var raise = target ? target.raise : this.raise;
raise.call(this, "error", "NOT IMPLEMENTED" + (nameForErrorMessage ? ": " + nameForErrorMessage : ""));
};
};