📄 beansevaluationexception.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -