1 22 package org.jboss.test.webservice.jbws424; 23 24 25 public class Exception2 extends PrivateException 26 { 27 private String shortDescr; 28 29 public Exception2() 30 { 31 } 32 33 public Exception2(String description, String shortDescr) 34 { 35 super(description); 36 this.shortDescr = shortDescr; 37 } 38 39 public String getShortDescr() 40 { 41 return shortDescr; 42 } 43 44 public void setShortDescr(String value) 45 { 46 this.shortDescr = value; 47 } 48 } 49 | Popular Tags |