mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-09 03:04:30 +00:00

This should only occur if another device has registered with the same number, effectively making the current device unregistered.
10 lines
208 B
Java
10 lines
208 B
Java
package org.whispersystems.textsecure.push;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class AuthorizationFailedException extends IOException {
|
|
public AuthorizationFailedException(String s) {
|
|
super(s);
|
|
}
|
|
}
|