mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 02:55:23 +00:00
54fad30f9f
1) Add configuration options for APN information in TextSecure settings. 2) Fall back to TextSecure settings if system settings are unavailable while sending/receiving MMS. 3) Catch sqlite exception when devices randomly don't have the same APN db or table structure.
20 lines
433 B
Java
20 lines
433 B
Java
package org.thoughtcrime.securesms.mms;
|
|
|
|
public class ApnUnavailableException extends Exception {
|
|
|
|
public ApnUnavailableException() {
|
|
}
|
|
|
|
public ApnUnavailableException(String detailMessage) {
|
|
super(detailMessage);
|
|
}
|
|
|
|
public ApnUnavailableException(Throwable throwable) {
|
|
super(throwable);
|
|
}
|
|
|
|
public ApnUnavailableException(String detailMessage, Throwable throwable) {
|
|
super(detailMessage, throwable);
|
|
}
|
|
}
|