fastmail-masked-email
Version:
A library for creating, deleting, and updating Fastmail masked emails
15 lines • 485 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvalidArgumentError = void 0;
/**
* Error thrown when an argument is invalid.
*/
class InvalidArgumentError extends Error {
constructor(message) {
super(message);
this.name = 'InvalidArgumentError';
Object.setPrototypeOf(this, InvalidArgumentError.prototype);
}
}
exports.InvalidArgumentError = InvalidArgumentError;
//# sourceMappingURL=invalidArgumentError.js.map