Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 565593b7 authored by Eric Biggers's avatar Eric Biggers
Browse files

Rethrow exception in LockPatternUtils#registerStrongAuthTracker

Without this we cannot see the root cause.

Bug: 381050473
Test: presubmit
Change-Id: Ia848274a8f33f003f6dd519d1764d98729795008
parent bc3378bf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1326,7 +1326,7 @@ public class LockPatternUtils {
        try {
            getLockSettings().registerStrongAuthTracker(strongAuthTracker.getStub());
        } catch (RemoteException e) {
            throw new RuntimeException("Could not register StrongAuthTracker");
            e.rethrowFromSystemServer();
        }
    }