amis-rpc-design/node_modules/fork-ts-checker-webpack-plugin/lib/rpc/rpc-error.js
2023-10-07 19:42:30 +08:00

13 lines
345 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RpcExitError = void 0;
class RpcExitError extends Error {
constructor(message, code, signal) {
super(message);
this.code = code;
this.signal = signal;
this.name = 'RpcExitError';
}
}
exports.RpcExitError = RpcExitError;