|
|
@ -59,22 +59,6 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
inherit(ReplayableError, OutgoingIdentityKeyError);
|
|
|
|
inherit(ReplayableError, OutgoingIdentityKeyError);
|
|
|
|
|
|
|
|
|
|
|
|
function OutgoingMessageError(number, message, timestamp, httpError) {
|
|
|
|
|
|
|
|
// eslint-disable-next-line prefer-destructuring
|
|
|
|
|
|
|
|
this.number = number.split('.')[0];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ReplayableError.call(this, {
|
|
|
|
|
|
|
|
name: 'OutgoingMessageError',
|
|
|
|
|
|
|
|
message: httpError ? httpError.message : 'no http error',
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (httpError) {
|
|
|
|
|
|
|
|
this.code = httpError.code;
|
|
|
|
|
|
|
|
appendStack(this, httpError);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
inherit(ReplayableError, OutgoingMessageError);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function SendMessageNetworkError(number, jsonData, httpError) {
|
|
|
|
function SendMessageNetworkError(number, jsonData, httpError) {
|
|
|
|
this.number = number;
|
|
|
|
this.number = number;
|
|
|
|
this.code = httpError.code;
|
|
|
|
this.code = httpError.code;
|
|
|
@ -119,21 +103,6 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
inherit(ReplayableError, EmptySwarmError);
|
|
|
|
inherit(ReplayableError, EmptySwarmError);
|
|
|
|
|
|
|
|
|
|
|
|
function PoWError(number, error) {
|
|
|
|
|
|
|
|
// eslint-disable-next-line prefer-destructuring
|
|
|
|
|
|
|
|
this.number = number.split('.')[0];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ReplayableError.call(this, {
|
|
|
|
|
|
|
|
name: 'PoWError',
|
|
|
|
|
|
|
|
message: 'Failed to calculate PoW',
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
|
|
|
|
appendStack(this, error);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
inherit(ReplayableError, PoWError);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function DNSResolutionError(message) {
|
|
|
|
function DNSResolutionError(message) {
|
|
|
|
// eslint-disable-next-line prefer-destructuring
|
|
|
|
// eslint-disable-next-line prefer-destructuring
|
|
|
|
|
|
|
|
|
|
|
@ -261,10 +230,8 @@
|
|
|
|
window.textsecure.IncomingIdentityKeyError = IncomingIdentityKeyError;
|
|
|
|
window.textsecure.IncomingIdentityKeyError = IncomingIdentityKeyError;
|
|
|
|
window.textsecure.OutgoingIdentityKeyError = OutgoingIdentityKeyError;
|
|
|
|
window.textsecure.OutgoingIdentityKeyError = OutgoingIdentityKeyError;
|
|
|
|
window.textsecure.ReplayableError = ReplayableError;
|
|
|
|
window.textsecure.ReplayableError = ReplayableError;
|
|
|
|
window.textsecure.OutgoingMessageError = OutgoingMessageError;
|
|
|
|
|
|
|
|
window.textsecure.MessageError = MessageError;
|
|
|
|
window.textsecure.MessageError = MessageError;
|
|
|
|
window.textsecure.SignedPreKeyRotationError = SignedPreKeyRotationError;
|
|
|
|
window.textsecure.SignedPreKeyRotationError = SignedPreKeyRotationError;
|
|
|
|
window.textsecure.PoWError = PoWError;
|
|
|
|
|
|
|
|
window.textsecure.EmptySwarmError = EmptySwarmError;
|
|
|
|
window.textsecure.EmptySwarmError = EmptySwarmError;
|
|
|
|
window.textsecure.SeedNodeError = SeedNodeError;
|
|
|
|
window.textsecure.SeedNodeError = SeedNodeError;
|
|
|
|
window.textsecure.DNSResolutionError = DNSResolutionError;
|
|
|
|
window.textsecure.DNSResolutionError = DNSResolutionError;
|
|
|
|