Kotlin Sealed Class
sealed class CheckoutError : Exception
open val cause: Throwable?
open val message: String?
Was this page helpful?