Created
May 15, 2019 23:32
-
-
Save cesarferreira/955257d6722f2ab9245049ac463dfb70 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
if you could explain it's usage, please