Exception

class Exception(val wrappedException: WrappedException) : RuntimeException

Wraps WrappedException again in real Exception

Return

Real Exception containing WrappedException.

Parameters

wrappedException

The WrappedException to be wrapped.

Constructors

Link copied to clipboard
constructor(wrappedException: WrappedException)

Properties

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

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Retrieves the wrapped exception housed within the current exception instance.

Link copied to clipboard

Converts the exception to a WrappedException.

Link copied to clipboard

Wraps the exception in a WrappedException.

Link copied to clipboard

Converts the exception to a wrapped exception if wrap is true.