mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 02:55:23 +00:00
19 lines
496 B
Java
19 lines
496 B
Java
|
package org.thoughtcrime.securesms.service;
|
||
|
|
||
|
public class AccountVerificationTimeoutException extends Exception {
|
||
|
public AccountVerificationTimeoutException() {
|
||
|
}
|
||
|
|
||
|
public AccountVerificationTimeoutException(String detailMessage) {
|
||
|
super(detailMessage);
|
||
|
}
|
||
|
|
||
|
public AccountVerificationTimeoutException(String detailMessage, Throwable throwable) {
|
||
|
super(detailMessage, throwable);
|
||
|
}
|
||
|
|
||
|
public AccountVerificationTimeoutException(Throwable throwable) {
|
||
|
super(throwable);
|
||
|
}
|
||
|
}
|