Skip to content

Package: ELParseException

ELParseException

nameinstructionbranchcomplexitylinemethod
ELParseException()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
ELParseException(String)
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*
2: * Copyright (c) 1997, 2020 Oracle and/or its affiliates and others.
3: * All rights reserved.
4: * Copyright 2004 The Apache Software Foundation
5: *
6: * Licensed under the Apache License, Version 2.0 (the "License");
7: * you may not use this file except in compliance with the License.
8: * You may obtain a copy of the License at
9: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing, software
13: * distributed under the License is distributed on an "AS IS" BASIS,
14: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15: * See the License for the specific language governing permissions and
16: * limitations under the License.
17: */
18:
19: package jakarta.servlet.jsp.el;
20:
21: /**
22: * Represents a parsing error encountered while parsing an EL expression.
23: *
24: * @deprecated As of JSP 2.1, replaced by {@link jakarta.el.ELException}
25: * @since JSP 2.0
26: */
27: @Deprecated
28: public class ELParseException extends ELException {
29:
30: private static final long serialVersionUID = 3521581805886060118L;
31:
32: /**
33: * Creates an ELParseException with no detail message.
34: */
35: public ELParseException() {
36: super();
37: }
38:
39: /**
40: * Creates an ELParseException with the provided detail message.
41: *
42: * @param pMessage the detail message
43: */
44: public ELParseException(String pMessage) {
45: super(pMessage);
46: }
47: }