All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.noheltcj.rxcommon.exceptions.UndeliverableNotificationException.kt Maven / Gradle / Ivy

package com.noheltcj.rxcommon.exceptions

class UndeliverableNotificationException(val notification: Notification) : RuntimeException(
    "Unable to deliver notification: $notification. Emitter has already finished."
) {
    sealed class Notification {
        object Completed : Notification()
        data class Terminated(val reason: Throwable) : Notification()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy