MultiException

class MultiException(val throwables: Iterable<Throwable>) : Exception

Exception that wraps multiple exceptions.

Constructors

Link copied to clipboard
constructor(throwables: Iterable<Throwable>)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
Link copied to clipboard
open val message: String?
Link copied to clipboard

Get root cause. This code is from guava Throwables API.

Link copied to clipboard