Created
July 21, 2019 11:49
-
-
Save PatilShreyas/dc1ab24e734b90e48678b78f488a6874 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Override | |
protected void onError(@NonNull Exception e) { | |
super.onError(e); | |
Log.e("MainActivity", e.getMessage()); | |
// Handle the error. | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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