mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-29 13:16:01 +01:00
11 lines
284 B
Java
11 lines
284 B
Java
package org.whispersystems.textsecure.push.exceptions;
|
|
|
|
|
|
import org.whispersystems.textsecure.push.exceptions.NonSuccessfulResponseCodeException;
|
|
|
|
public class RateLimitException extends NonSuccessfulResponseCodeException {
|
|
public RateLimitException(String s) {
|
|
super(s);
|
|
}
|
|
}
|