List of utility methods to do Exception Log
void | logException(String tag, Throwable ex) log Exception Log.e(tag, ex.getLocalizedMessage(), ex); |
void | showException(Context parent, Throwable ex) show Exception if (ex != null) { Log.e(parent.getClass().getSimpleName(), ex.getLocalizedMessage(), ex); new AlertDialog.Builder(parent).setTitle("Error") .setMessage(ex.getLocalizedMessage()) .setNeutralButton("Close", null).show(); |