Network Error Exception
open class NetworkErrorException(errorCode: Int, errorMessage: String, response: String) : Exception
Content copied to clipboard
It is subclass of Exception class which is used to parse Network related error and help to bind the response with UI.
Created at December 24, 2021
Author
Darshan Bhanushali
Constructors
Link copied to clipboard
fun NetworkErrorException(errorCode: Int = -1, errorMessage: String, response: String = "")
Content copied to clipboard