1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.commons.beanutils;
19
20 /***
21 * Thrown to indicate that the <em>Bean Access Language</em> cannot execute query
22 * against given bean. This is a runtime exception and access langauges are encouraged
23 * to subclass to create custom exceptions whenever appropriate.
24 *
25 * @author Robert Burrell Donkin
26 * @since 1.7
27 */
28
29 public class BeanAccessLanguageException extends IllegalArgumentException {
30
31
32
33 /***
34 * Constructs a <code>BeanAccessLanguageException</code> without a detail message.
35 */
36 public BeanAccessLanguageException() {
37 super();
38 }
39
40 /***
41 * Constructs a <code>BeanAccessLanguageException</code> without a detail message.
42 *
43 * @param message the detail message explaining this exception
44 */
45 public BeanAccessLanguageException(String message) {
46 super(message);
47 }
48 }