1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.springmodules.validation.util.fel;
18
19 /**
20 * Thrown by {@link FunctionExpressionParser#parse(String)} when the parsing fails.
21 *
22 * @author Uri Boness
23 */
24 public class FelParseException extends FelException {
25
26 /**
27 * Construct a <code>NestedRuntimeException</code> with the specified detail message.
28 *
29 * @param msg the detail message
30 */
31 public FelParseException(String msg) {
32 super(msg);
33 }
34
35 /**
36 * Construct a <code>NestedRuntimeException</code> with the specified detail message
37 * and nested exception.
38 *
39 * @param msg the detail message
40 * @param ex the nested exception
41 */
42 public FelParseException(String msg, Throwable ex) {
43 super(msg, ex);
44 }
45
46 }