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

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

Merge "Log: increase visibility of Log.TerribleFailure"

am: 5e253647

Change-Id: Ibe67ef79c9ac5de3cbfdb5f0252b058e39940c83
parents 8a3f025d 5e253647
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); }
    }