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

Commit 503af47c authored by Mukesh Agrawal's avatar Mukesh Agrawal Committed by android-build-merger
Browse files

Merge "Log: increase visibility of Log.TerribleFailure" am: 5e253647 am:...

Merge "Log: increase visibility of Log.TerribleFailure" am: 5e253647 am: f6328d69 am: 864dffcd
am: ab0c70ea

Change-Id: I6361cf9eb54eb1c9fbb0c4f49b913b4add870e97
parents f4b82e38 ab0c70ea
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -89,8 +89,9 @@ public final class Log {

    /**
     * Exception class used to capture a stack trace in {@link #wtf}.
     * @hide
     */
    private static class TerribleFailure extends Exception {
    public static class TerribleFailure extends Exception {
        TerribleFailure(String msg, Throwable cause) { super(msg, cause); }
    }