DetailsConfiguration

data class DetailsConfiguration(val includeStackTrace: Boolean = true, val includeMessage: Boolean = true, val includeCause: Boolean = true, val includeLocalizedMessage: Boolean = true)

Represents the configuration options for including various details when handling or transforming exceptions in the WrappedException class. Exception Class can't be excluded

Constructors

Link copied to clipboard
constructor(includeStackTrace: Boolean = true, includeMessage: Boolean = true, includeCause: Boolean = true, includeLocalizedMessage: Boolean = true)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val includeCause: Boolean = true

Indicates whether the cause of the exception should be included.

Link copied to clipboard

Indicates whether the localized exception message should be included.

Link copied to clipboard

Indicates whether the exception message should be included.

Link copied to clipboard

Indicates whether the stack trace should be included.