-
-
Save entrealist/3ef5d37902e76941b7a6df39a9742fdf to your computer and use it in GitHub Desktop.
This file contains 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
/** | |
* Base Class for handling errors/failures/exceptions. | |
* Every feature specific failure should extend [FeatureFailure] class. | |
*/ | |
sealed class Failure(val exception: Exception = Exception("Failure")) { | |
object None : Failure() | |
object NetworkConnection : Failure() | |
object ServerError : Failure() | |
/** * Extend this class for feature specific failures.*/ | |
open class FeatureFailure(featureException: Exception = Exception("Feature failure")) : Failure(featureException) | |
override fun equals(other: Any?): Boolean { | |
return other is Failure | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment