trm-core
Version:
TRM (Transport Request Manager) Core
16 lines (15 loc) • 590 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RFCClientError = void 0;
const ClientError_1 = require("./ClientError");
class RFCClientError extends ClientError_1.ClientError {
constructor(exceptionType, sapMessage, rfcError, message) {
super(exceptionType, sapMessage, message);
this.exceptionType = exceptionType;
this.sapMessage = sapMessage;
this.rfcError = rfcError;
this.name = 'TrmRFCClient';
Object.setPrototypeOf(this, new.target.prototype);
}
}
exports.RFCClientError = RFCClientError;