public class JspELException extends ELException {
+ private static final long serialVersionUID = 1L;
+
public JspELException(String mark, ELException e) {
super(mark + " " + e.getMessage(), e.getCause());
}
public class JspMethodNotFoundException extends MethodNotFoundException {
+ private static final long serialVersionUID = 1L;
+
public JspMethodNotFoundException(String mark, MethodNotFoundException e) {
super(mark + " " + e.getMessage(), e.getCause());
}
public final class JspPropertyNotFoundException extends
PropertyNotFoundException {
+ private static final long serialVersionUID = 1L;
+
public JspPropertyNotFoundException(String mark, PropertyNotFoundException e) {
super(mark + " " + e.getMessage(), e.getCause());
}
public class JspPropertyNotWritableException extends
PropertyNotWritableException {
+ private static final long serialVersionUID = 1L;
+
public JspPropertyNotWritableException(String mark, PropertyNotWritableException e) {
super(mark + " " + e.getMessage(), e.getCause());
}