Platform

object Platform

Functions

Link copied to clipboard
fun composeErrors(all: <ERROR CLASS><Throwable>): Throwable
fun composeErrors(first: Throwable, res: <ERROR CLASS><Any?>): Throwable

fun composeErrors(all: List<Throwable>): Throwable?
fun composeErrors(first: Throwable, vararg rest: Throwable): Throwable
fun composeErrors(first: Throwable, other: Throwable?): Throwable
fun composeErrors(first: Throwable, rest: List<Throwable>): Throwable
fun composeErrors(first: Throwable?, other: Throwable?): Throwable?

Composes multiple errors together, meant for those cases in which error suppression, due to a second error being triggered, is not acceptable.