Consider unregistered if authorization fails.
This should only occur if another device has registered with the same number, effectively making the current device unregistered.pull/1/head
parent
03ff55db97
commit
cfb7b8fcba
@ -0,0 +1,9 @@
|
||||
package org.whispersystems.textsecure.push;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
public class AuthorizationFailedException extends IOException {
|
||||
public AuthorizationFailedException(String s) {
|
||||
super(s);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue