1 20 package org.apache.cactus.internal.client; 21 22 import org.apache.cactus.util.ChainedException; 23 24 32 public class ParsingException extends ChainedException 33 { 34 37 public ParsingException(String theMessage) 38 { 39 super(theMessage); 40 } 41 42 45 public ParsingException(Throwable theException) 46 { 47 super(theException); 48 } 49 50 53 public ParsingException(String theMessage, Throwable theException) 54 { 55 super(theMessage, theException); 56 } 57 } 58 | Popular Tags |