1 22 package org.jboss.test.webservice.jbws251; 23 24 public class BaseException extends Exception  25 { 26 27 public BaseException() 28 { 29 super(); 30 } 31 32 public BaseException(String arg0, Throwable arg1) 33 { 34 super(arg0, arg1); 35 } 36 37 public BaseException(String arg0) 38 { 39 super(arg0); 40 } 41 42 public BaseException(Throwable arg0) 43 { 44 super(arg0); 45 } 46 } 47 | Popular Tags |