dieumercimvemba's picture
download
raw
891 Bytes
// vim: ts=4:sw=4:expandtab
exports.SignalError = class SignalError extends Error {};
exports.UntrustedIdentityKeyError = class UntrustedIdentityKeyError extends exports.SignalError {
constructor(addr, identityKey) {
super();
this.name = 'UntrustedIdentityKeyError';
this.addr = addr;
this.identityKey = identityKey;
}
};
exports.SessionError = class SessionError extends exports.SignalError {
constructor(message) {
super(message);
this.name = 'SessionError';
}
};
exports.MessageCounterError = class MessageCounterError extends exports.SessionError {
constructor(message) {
super(message);
this.name = 'MessageCounterError';
}
};
exports.PreKeyError = class PreKeyError extends exports.SessionError {
constructor(message) {
super(message);
this.name = 'PreKeyError';
}
};

Xet Storage Details

Size:
891 Bytes
·
Xet hash:
424c00c6fa614f4de67b6e905e45e1bf3b32758bf84b5c8e9e339b8b96c7a1f3

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.