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

am: f6328d6943

Change-Id: I171542c4fd7ec40a588e5ae9e6d5cf601a77aeed
This commit is contained in:
Mukesh Agrawal
2017-04-27 16:56:56 +00:00
committed by android-build-merger

View File

@@ -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); }
}