mail-mime-builder
Version:
RFC-2822, RFC-2045 and RFC-2049 compliant zero dependency raw email message generator.
14 lines (13 loc) • 371 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MIMETextError = void 0;
class MIMETextError extends Error {
name = '';
description = '';
constructor(message, description = '') {
super(description);
this.name = message;
this.description = description;
}
}
exports.MIMETextError = MIMETextError;