Added in API level 26

LambdaConversionException

open class LambdaConversionException : Exception
kotlin.Any
   ↳ kotlin.Throwable
   ↳ java.lang.Exception
   ↳ java.lang.invoke.LambdaConversionException

LambdaConversionException

Summary

Public constructors

Constructs a LambdaConversionException.

Constructs a LambdaConversionException with a message.

Constructs a LambdaConversionException with a message and cause.

Constructs a LambdaConversionException with a cause.

LambdaConversionException(message: String!, cause: Throwable!, enableSuppression: Boolean, writableStackTrace: Boolean)

Constructs a LambdaConversionException with a message, cause, and other settings.

Public constructors

LambdaConversionException

Added in API level 26
LambdaConversionException()

Constructs a LambdaConversionException.

LambdaConversionException

Added in API level 26
LambdaConversionException(message: String!)

Constructs a LambdaConversionException with a message.

Parameters
message String!: the detail message

LambdaConversionException

Added in API level 26
LambdaConversionException(
    message: String!,
    cause: Throwable!)

Constructs a LambdaConversionException with a message and cause.

Parameters
message String!: the detail message
cause Throwable!: the cause

LambdaConversionException

Added in API level 26
LambdaConversionException(cause: Throwable!)

Constructs a LambdaConversionException with a cause.

Parameters
cause Throwable!: the cause

LambdaConversionException

Added in API level 26
LambdaConversionException(
    message: String!,
    cause: Throwable!,
    enableSuppression: Boolean,
    writableStackTrace: Boolean)

Constructs a LambdaConversionException with a message, cause, and other settings.

Parameters
message String!: the detail message
cause Throwable!: the cause
enableSuppression Boolean: whether or not suppressed exceptions are enabled
writableStackTrace Boolean: whether or not the stack trace is writable