mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-29 09:03:16 +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.
14 lines
243 B
Java
14 lines
243 B
Java
package org.whispersystems.textsecuregcm.entities;
|
|
|
|
public class CryptoEncodingException extends Exception {
|
|
|
|
public CryptoEncodingException(String s) {
|
|
super(s);
|
|
}
|
|
|
|
public CryptoEncodingException(Exception e) {
|
|
super(e);
|
|
}
|
|
|
|
}
|