beansevaluationexception.java

来自「Please read your package and describe it」· Java 代码 · 共 58 行

JAVA
58
字号
package de.mindmatters.faces.spring.factory;import javax.faces.el.EvaluationException;/** * An exception reporting an error that occurred during the evaluation of an * variable in a {@link javax.faces.el.VariableResolver}. */public class BeansEvaluationException extends EvaluationException {    /** The serialversion. */    private static final long serialVersionUID = -3313775972312302111L;    /**     * Construct a new exception with no detail message or root cause.     */    public BeansEvaluationException() {        super();    }    /**     * Construct a new exception with the specified detail message and no root     * cause.     *      * @param message     *            The detail message for this exception     */    public BeansEvaluationException(final String message) {        super(message);    }    /**     * Construct a new exception with the specified root cause. The detail     * message will be set to <code>(cause == null ? null :     * cause.toString()</code>     *      * @param cause     *            The root cause for this exception     */    public BeansEvaluationException(final Throwable cause) {        super(cause);    }    /**     * Construct a new exception with the specified detail message and root     * cause.     *      * @param message     *            The detail message for this exception     * @param cause     *            The root cause for this exception     */    public BeansEvaluationException(final String message, final Throwable cause) {        super(message, cause);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?