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