node-easysms
Version:
EasySMS is an SMS sender for Node.js
19 lines (18 loc) • 425 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GatewayErrorException = void 0;
class GatewayErrorException {
constructor(message, raw) {
this.raw = {};
this.message = message;
this.raw = raw;
}
/**
* 获取发送结果
* @returns
*/
getRaw() {
return this.raw;
}
}
exports.GatewayErrorException = GatewayErrorException;