Filter exception

This commit is contained in:
M66B 2020-06-16 07:29:55 +02:00
parent 1d57cf7b6d
commit eb8b2a49b6
1 changed files with 4 additions and 0 deletions

View File

@ -27,6 +27,7 @@ import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.res.Configuration;
import android.database.sqlite.SQLiteFullException;
import android.graphics.Point;
import android.net.ConnectivityManager;
import android.net.Network;
@ -752,6 +753,9 @@ public class Log {
*/
return false;
if (ex instanceof SQLiteFullException) // database or disk is full (code 13 SQLITE_FULL)
return false;
if ("android.util.SuperNotCalledException".equals(ex.getClass().getName()))
/*
android.util.SuperNotCalledException: Activity {eu.faircode.email/eu.faircode.email.ActivityView} did not call through to super.onResume()