1 20 package org.apache.cactus.internal.client; 21 22 import org.apache.cactus.util.ChainedException; 23 24 29 public class ClientException extends ChainedException 30 { 31 34 public ClientException(String theMessage) 35 { 36 super(theMessage); 37 } 38 39 42 public ClientException(String theMessage, Throwable theException) 43 { 44 super(theMessage, theException); 45 } 46 47 50 public ClientException(Throwable theException) 51 { 52 super(theException); 53 } 54 } 55 | Popular Tags |