mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
b9f4fba98a
Additionally, make the group creation process asynchronous.
9 lines
193 B
Java
9 lines
193 B
Java
package org.thoughtcrime.securesms.transport;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class RetryLaterException extends Exception {
|
|
public RetryLaterException(Exception e) {
|
|
super(e);
|
|
}
|
|
}
|