yoastseo
Version:
Yoast client-side content analysis
22 lines (21 loc) • 538 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
/**
* The InvalidTypeError is thrown when an invalid type is passed as an argument.
*/
class InvalidTypeError extends Error {
/**
* Constructs an InvalidTypeError.
* @param {string} message The message to show when the error is thrown.
* @constructor
*/
constructor(message) {
super(message);
this.name = "InvalidTypeError";
}
}
exports.default = InvalidTypeError;
//# sourceMappingURL=invalidType.js.map