InternalError

data class InternalError(exceptions: List<String>, message: String?) : TypedExceptionV1

an internal error in signald has occurred. typically these are things that "should never happen" such as issues saving to the local disk, but it is also the default error type and may catch some things that should have their own error type. If you find tht your code is depending on the exception list for any particular behavior, please file an issue so we can pull those errors out to a separate error type: https://gitlab.com/signald/signald/-/issues/new

Constructors

Link copied to clipboard
fun InternalError(exceptions: List<String> = emptyList(), message: String? = null)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
val exceptions: List<String>
Link copied to clipboard
open override val message: String? = null