mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-20 17:57:29 +00:00
19 lines
396 B
Java
19 lines
396 B
Java
package org.whispersystems.textsecure.push;
|
|
|
|
import java.io.IOException;
|
|
import java.util.List;
|
|
|
|
public class UnregisteredUserException extends IOException {
|
|
|
|
private final String e164number;
|
|
|
|
public UnregisteredUserException(String e164number, Exception exception) {
|
|
super(exception);
|
|
this.e164number = e164number;
|
|
}
|
|
|
|
public String getE164Number() {
|
|
return e164number;
|
|
}
|
|
}
|