115 lines
4.3 KiB
JavaScript
115 lines
4.3 KiB
JavaScript
var __extends = (this && this.__extends) || (function () {
|
||
var extendStatics = function (d, b) {
|
||
extendStatics = Object.setPrototypeOf ||
|
||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
||
return extendStatics(d, b);
|
||
};
|
||
return function (d, b) {
|
||
extendStatics(d, b);
|
||
function __() { this.constructor = d; }
|
||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||
};
|
||
})();
|
||
// 版权所有(c).NET基金会。保留所有权利。
|
||
// 在2.0版Apache许可下授权。有关许可证信息,请参见项目根目录中的License.txt。
|
||
/**
|
||
* Error thrown when an HTTP request fails.
|
||
* HTTP请求失败时引发错误。
|
||
*/
|
||
var HttpError = /** @class */ (function (_super) {
|
||
__extends(HttpError, _super);
|
||
/** Constructs a new instance of {@link @aspnet/signalr.HttpError}.
|
||
*
|
||
* @param {string} errorMessage A descriptive error message.
|
||
* @param {number} statusCode The HTTP status code represented by this error.
|
||
*/
|
||
function HttpError(errorMessage, statusCode) {
|
||
var _newTarget = this.constructor;
|
||
var _this = this;
|
||
var trueProto = _newTarget.prototype;
|
||
_this = _super.call(this, errorMessage) || this;
|
||
_this.statusCode = statusCode;
|
||
// Workaround issue in Typescript compiler
|
||
// https://github.com/Microsoft/TypeScript/issues/13965#issuecomment-278570200
|
||
_this.__proto__ = trueProto;
|
||
return _this;
|
||
}
|
||
return HttpError;
|
||
}(Error));
|
||
export { HttpError };
|
||
/**
|
||
* Error thrown when a timeout elapses.
|
||
* 超时错误
|
||
*/
|
||
var TimeoutError = /** @class */ (function (_super) {
|
||
__extends(TimeoutError, _super);
|
||
/** Constructs a new instance of {@link @aspnet/signalr.TimeoutError}.
|
||
*
|
||
* @param {string} errorMessage A descriptive error message.
|
||
*/
|
||
function TimeoutError(errorMessage) {
|
||
var _newTarget = this.constructor;
|
||
if (errorMessage === void 0) { errorMessage = "A timeout occurred."; }
|
||
var _this = this;
|
||
var trueProto = _newTarget.prototype;
|
||
_this = _super.call(this, errorMessage) || this;
|
||
// Workaround issue in Typescript compiler
|
||
// https://github.com/Microsoft/TypeScript/issues/13965#issuecomment-278570200
|
||
_this.__proto__ = trueProto;
|
||
return _this;
|
||
}
|
||
return TimeoutError;
|
||
}(Error));
|
||
export { TimeoutError };
|
||
/**
|
||
* Error thrown when an action is aborted.
|
||
* 连接错误
|
||
*/
|
||
var AbortError = /** @class */ (function (_super) {
|
||
__extends(AbortError, _super);
|
||
/** Constructs a new instance of {@link AbortError}.
|
||
*
|
||
* @param {string} errorMessage A descriptive error message.
|
||
*/
|
||
function AbortError(errorMessage) {
|
||
var _newTarget = this.constructor;
|
||
if (errorMessage === void 0) { errorMessage = "An abort occurred."; }
|
||
var _this = this;
|
||
var trueProto = _newTarget.prototype;
|
||
_this = _super.call(this, errorMessage) || this;
|
||
// Workaround issue in Typescript compiler
|
||
// https://github.com/Microsoft/TypeScript/issues/13965#issuecomment-278570200
|
||
_this.__proto__ = trueProto;
|
||
return _this;
|
||
}
|
||
return AbortError;
|
||
}(Error));
|
||
export { AbortError };
|
||
/**
|
||
* Error thrown when message event is not found.
|
||
* 事件未定义
|
||
*/
|
||
var EventNotFoundError = /** @class */ (function (_super) {
|
||
__extends(EventNotFoundError, _super);
|
||
/** Constructs a new instance of {@link AbortError}.
|
||
*
|
||
* @param {string} errorMessage A descriptive error message.
|
||
*/
|
||
function EventNotFoundError(invocationMessage, errorMessage) {
|
||
var _newTarget = this.constructor;
|
||
if (errorMessage === void 0) { errorMessage = "message event not found."; }
|
||
var _this = this;
|
||
var trueProto = _newTarget.prototype;
|
||
_this = _super.call(this, errorMessage) || this;
|
||
_this.methodName = invocationMessage.target;
|
||
_this.invocationMessage = invocationMessage;
|
||
// Workaround issue in Typescript compiler
|
||
// https://github.com/Microsoft/TypeScript/issues/13965#issuecomment-278570200
|
||
_this.__proto__ = trueProto;
|
||
return _this;
|
||
}
|
||
return EventNotFoundError;
|
||
}(Error));
|
||
export { EventNotFoundError };
|