Skip to content

Instantly share code, notes, and snippets.

@lukaszkalnik
Created June 18, 2020 15:28
Show Gist options
  • Save lukaszkalnik/8a3b92bccb508fc57022d87f235d9df1 to your computer and use it in GitHub Desktop.
Save lukaszkalnik/8a3b92bccb508fc57022d87f235d9df1 to your computer and use it in GitHub Desktop.
sealed class ApiError
data class HttpError(val code: Int, val body: String) : ApiError()
data class NetworkError(val throwable: Throwable) : ApiError()
data class UnknownApiError(val throwable: Throwable) : ApiError()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment