You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.7 KiB
77 lines
1.7 KiB
/*
|
|
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.lang.invoke;
|
|
|
|
/**
|
|
* LambdaConversionException
|
|
*/
|
|
public class LambdaConversionException extends Exception {
|
|
private static final long serialVersionUID = 292L + 8L;
|
|
|
|
/**
|
|
* Constructs a {@code LambdaConversionException}.
|
|
*/
|
|
public LambdaConversionException() {
|
|
}
|
|
|
|
/**
|
|
* Constructs a {@code LambdaConversionException} with a message.
|
|
* @param message the detail message
|
|
*/
|
|
public LambdaConversionException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
/**
|
|
* Constructs a {@code LambdaConversionException} with a message and cause.
|
|
* @param message the detail message
|
|
* @param cause the cause
|
|
*/
|
|
public LambdaConversionException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
/**
|
|
* Constructs a {@code LambdaConversionException} with a cause.
|
|
* @param cause the cause
|
|
*/
|
|
public LambdaConversionException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
|
|
/**
|
|
* Constructs a {@code LambdaConversionException} with a message,
|
|
* cause, and other settings.
|
|
* @param message the detail message
|
|
* @param cause the cause
|
|
* @param enableSuppression whether or not suppressed exceptions are enabled
|
|
* @param writableStackTrace whether or not the stack trace is writable
|
|
*/
|
|
public LambdaConversionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
|
super(message, cause, enableSuppression, writableStackTrace);
|
|
}
|
|
}
|