Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Created July 21, 2019 11:49
Show Gist options
  • Save PatilShreyas/dc1ab24e734b90e48678b78f488a6874 to your computer and use it in GitHub Desktop.
Save PatilShreyas/dc1ab24e734b90e48678b78f488a6874 to your computer and use it in GitHub Desktop.
@Override
protected void onError(@NonNull Exception e) {
super.onError(e);
Log.e("MainActivity", e.getMessage());
// Handle the error.
}
override fun onError(e: Exception) {
super.onError(e)
Log.e("MainActivity", e.message)
// Handle the Error.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment