ajsfw
Version:
Ajs Framework
36 lines (35 loc) • 1.65 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var exceptions_1 = require("ajsfw/exceptions");
var RMIEndpointNotInitializedException = (function (_super) {
__extends(RMIEndpointNotInitializedException, _super);
function RMIEndpointNotInitializedException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return RMIEndpointNotInitializedException;
}(exceptions_1.Exception));
exports.RMIEndpointNotInitializedException = RMIEndpointNotInitializedException;
var InvalidServiceException = (function (_super) {
__extends(InvalidServiceException, _super);
function InvalidServiceException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return InvalidServiceException;
}(exceptions_1.Exception));
exports.InvalidServiceException = InvalidServiceException;
var InvalidServiceMethodException = (function (_super) {
__extends(InvalidServiceMethodException, _super);
function InvalidServiceMethodException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return InvalidServiceMethodException;
}(exceptions_1.Exception));
exports.InvalidServiceMethodException = InvalidServiceMethodException;
var InvalidReturnDataException = (function (_super) {
__extends(InvalidReturnDataException, _super);
function InvalidReturnDataException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return InvalidReturnDataException;
}(exceptions_1.Exception));
exports.InvalidReturnDataException = InvalidReturnDataException;