mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 02:55:23 +00:00
fd045f2354
1) Make the radio change a synchronous action with a timeout. 2) Move the send logic into an MmsTransport, in preparation for UniversalTransport composition. 3) Move the download logic into a synchronous receiver.
8 lines
151 B
Java
8 lines
151 B
Java
package org.thoughtcrime.securesms.mms;
|
|
|
|
public class MmsRadioException extends Throwable {
|
|
public MmsRadioException(String s) {
|
|
super(s);
|
|
}
|
|
}
|