1 16 package org.apache.commons.jxpath.ri.model; 17 18 import org.apache.commons.jxpath.TestBean; 19 20 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 } 39 | Popular Tags |