Skip to content

Instantly share code, notes, and snippets.

@raamcosta
Last active November 28, 2021 23:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raamcosta/683fa5a5127c1787e5dce5cf7796e441 to your computer and use it in GitHub Desktop.
Save raamcosta/683fa5a5127c1787e5dce5cf7796e441 to your computer and use it in GitHub Desktop.
sealed interface GetMagicCardUseCaseError
object InvalidCardNameFormat : GetMagicCardUseCaseError
sealed interface ApiCallError : GetMagicCardUseCaseError
class HttpUnsuccessfulCodeError(val httpCode: Int) : ApiCallError
object RemoteServerNotReachedError : ApiCallError
object UnexpectedApiCommunicationError : ApiCallError
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment