notification-service-sdk
Version:
A Node.js notification service SDK supporting email and SMS providers
15 lines • 398 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotificationError = void 0;
/**
* 通知服务错误类
*/
class NotificationError extends Error {
constructor(message, code) {
super(message);
this.code = code;
this.name = 'NotificationError';
}
}
exports.NotificationError = NotificationError;
//# sourceMappingURL=index.js.map