mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-25 22:58:01 +01:00
1) Store account data as a json type, which includes all devices in a single object. 2) Simplify message delivery logic. 3) Make federated calls a pass through to standard controllers. 4) Simplify key retrieval logic.
12 lines
255 B
Java
12 lines
255 B
Java
package org.whispersystems.textsecuregcm.push;
|
|
|
|
public class TransientPushFailureException extends Exception {
|
|
public TransientPushFailureException(String s) {
|
|
super(s);
|
|
}
|
|
|
|
public TransientPushFailureException(Exception e) {
|
|
super(e);
|
|
}
|
|
}
|