Skip to content

Instantly share code, notes, and snippets.

@sasssass
Created May 19, 2020 21:47
Show Gist options
  • Save sasssass/5b4b481ce62bd6da8acb632f5ca8d869 to your computer and use it in GitHub Desktop.
Save sasssass/5b4b481ce62bd6da8acb632f5ca8d869 to your computer and use it in GitHub Desktop.
interface RemoteErrorEmitter {
fun onError(msg: String)
fun onError(errorType: ErrorType)
}
enum class ErrorType {
NETWORK, // IO
TIMEOUT, // Socket
UNKNOWN //Anything else
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment