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

Commit 5e253647 authored by Mukesh Agrawal's avatar Mukesh Agrawal Committed by Gerrit Code Review
Browse files

Merge "Log: increase visibility of Log.TerribleFailure"

parents 4418eb4d c2a56b27
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); }
    }