1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.commons.jxpath.ri.model;
17
18 import org.apache.commons.jxpath.TestBean;
19
20 /***
21 *
22 * @author <a href="mailto:dmitri@apache.org">Dmitri Plotnikov</a>
23 * @version $Id: ExceptionPropertyTestBean.java,v 1.4 2004/02/29 14:17:45 scolebourne Exp $
24 */
25 public class ExceptionPropertyTestBean {
26
27 public String getErrorString() {
28 throw new RuntimeException("errorString");
29 }
30
31 public String[] getErrorStringArray() {
32 throw new RuntimeException("errorStringArray");
33 }
34
35 public TestBean getErrorBean() {
36 throw new RuntimeException("errorBean");
37 }
38 }