java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.invoke.LambdaConversionException
- All Implemented Interfaces:
 Serializable
LambdaConversionException
- Since:
 - 1.8
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionConstructs aLambdaConversionException.LambdaConversionException(String message) Constructs aLambdaConversionExceptionwith a message.LambdaConversionException(String message, Throwable cause) Constructs aLambdaConversionExceptionwith a message and cause.LambdaConversionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructs aLambdaConversionExceptionwith a message, cause, and other settings.Constructs aLambdaConversionExceptionwith a cause. - 
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Constructor Details
- 
LambdaConversionException
public LambdaConversionException()Constructs aLambdaConversionException. - 
LambdaConversionException
Constructs aLambdaConversionExceptionwith a message.- Parameters:
 message- the detail message
 - 
LambdaConversionException
Constructs aLambdaConversionExceptionwith a message and cause.- Parameters:
 message- the detail messagecause- the cause
 - 
LambdaConversionException
Constructs aLambdaConversionExceptionwith a cause.- Parameters:
 cause- the cause
 - 
LambdaConversionException
public LambdaConversionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructs aLambdaConversionExceptionwith a message, cause, and other settings.- Parameters:
 message- the detail messagecause- the causeenableSuppression- whether or not suppressed exceptions are enabledwritableStackTrace- whether or not the stack trace is writable
 
 -