mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-20 17:57:29 +00:00
1) Refactored MMS layer to use abstracted types. 2) Added support for retrieving attachment IDs.
11 lines
189 B
Java
11 lines
189 B
Java
package org.whispersystems.textsecure.push;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
public class RateLimitException extends IOException {
|
|
public RateLimitException(String s) {
|
|
super(s);
|
|
}
|
|
}
|