Filter dead system exception

pull/184/head
M66B 5 years ago
parent e9c75cab59
commit 104deca06d

@ -520,7 +520,6 @@ public class Log {
if (ex instanceof InternalError &&
"Thread starting during runtime shutdown".equals(ex.getMessage()))
/*
java.lang.InternalError: Thread starting during runtime shutdown
java.lang.InternalError: Thread starting during runtime shutdown
at java.lang.Thread.nativeCreate(Native Method)
at java.lang.Thread.start(Thread.java:1063)
@ -534,7 +533,6 @@ public class Log {
if ("android.app.RemoteServiceException".equals(ex.getClass().getName()))
/*
android.app.RemoteServiceException: Bad notification for startForeground: java.util.ConcurrentModificationException
android.app.RemoteServiceException: Bad notification for startForeground: java.util.ConcurrentModificationException
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2204)
*/
@ -542,7 +540,6 @@ public class Log {
if ("android.view.WindowManager$BadTokenException".equals(ex.getClass().getName()))
/*
android.view.WindowManager$BadTokenException: Unable to add window -- token android.os.BinderProxy@e9084db is not valid; is your activity running?
android.view.WindowManager$BadTokenException: Unable to add window -- token android.os.BinderProxy@e9084db is not valid; is your activity running?
at android.view.ViewRootImpl.setView(ViewRootImpl.java:827)
at android.view.WindowManagerGlobal.addView(WindowManagerGlobal.java:356)
@ -557,7 +554,6 @@ public class Log {
if (ex instanceof NoSuchMethodError)
/*
java.lang.NoSuchMethodError: No direct method ()V in class Landroid/security/IKeyChainService$Stub; or its super classes (declaration of 'android.security.IKeyChainService$Stub' appears in /system/framework/framework.jar!classes2.dex)
java.lang.NoSuchMethodError: No direct method ()V in class Landroid/security/IKeyChainService$Stub; or its super classes (declaration of 'android.security.IKeyChainService$Stub' appears in /system/framework/framework.jar!classes2.dex)
at com.android.keychain.KeyChainService$1.(KeyChainService.java:95)
at com.android.keychain.KeyChainService.(KeyChainService.java:95)
@ -684,14 +680,17 @@ public class Log {
if (ex instanceof RuntimeException &&
ex.getMessage() != null &&
(ex.getMessage().startsWith("Could not get application info") ||
(ex.getMessage().contains("DeadSystemException") ||
ex.getMessage().startsWith("Could not get application info") ||
ex.getMessage().startsWith("Unable to create service") ||
ex.getMessage().startsWith("Unable to start service") ||
ex.getMessage().startsWith("Unable to resume activity") ||
ex.getMessage().startsWith("Failure delivering result")))
return false;
/*
java.lang.RuntimeException: Could not get application info.
java.lang.RuntimeException: Unable to unbind to service androidx.work.impl.background.systemjob.SystemJobService@291a412 with Intent { cmp=eu.faircode.email/androidx.work.impl.background.systemjob.SystemJobService }: java.lang.RuntimeException: android.os.DeadSystemException
at android.app.ActivityThread.handleUnbindService(ActivityThread.java:4352)
java.lang.RuntimeException: Could not get application info.
 at CH0.a(PG:11)
 at org.chromium.content.browser.ChildProcessLauncherHelperImpl.a(PG:34)
@ -701,7 +700,6 @@ public class Log {
 at android.os.Looper.loop(Looper.java:198)
 at android.os.HandlerThread.run(HandlerThread.java:65)
java.lang.RuntimeException: Unable to create service eu.faircode.email.ServiceSynchronize: java.lang.NullPointerException: Attempt to invoke interface method 'java.util.List android.os.IUserManager.getProfiles(int, boolean)' on a null object reference
java.lang.RuntimeException: Unable to create service eu.faircode.email.ServiceSynchronize: java.lang.NullPointerException: Attempt to invoke interface method 'java.util.List android.os.IUserManager.getProfiles(int, boolean)' on a null object reference
at android.app.ActivityThread.handleCreateService(ActivityThread.java:2739)
@ -739,7 +737,6 @@ public class Log {
"InputChannel is not initialized.".equals(ex.getMessage()))
return false;
/*
java.lang.RuntimeException: InputChannel is not initialized.
java.lang.RuntimeException: InputChannel is not initialized.
at android.view.InputEventReceiver.nativeInit(Native Method)
at android.view.InputEventReceiver.<init>(InputEventReceiver.java:72)

Loading…
Cancel
Save