package android.util; public final class Log { public static int i(String tag, String msg) { throw new UnsupportedOperationException("Stub!"); } public static int w(String tag, String msg) { throw new UnsupportedOperationException("Stub!"); } public static int e(String tag, String msg) { throw new UnsupportedOperationException("Stub!"); } public static int e(String tag, String msg, Throwable tr) { throw new UnsupportedOperationException("Stub!"); } }