1 16 17 package org.apache.ws.jaxme; 18 19 import javax.xml.bind.JAXBException; 20 21 25 public class PMException extends JAXBException { 26 28 public PMException(String pMessage) { 29 super(pMessage); 30 } 31 32 34 public PMException(String pMessage, String pErrorCode) { 35 super(pMessage, pErrorCode); 36 } 37 38 40 public PMException(Throwable pLinkedException) { 41 super(pLinkedException); 42 } 43 44 46 public PMException(String pMessage, Throwable pLinkedException) { 47 super(pMessage, pLinkedException); 48 } 49 50 52 public PMException( 53 String pMessage, 54 String pErrorCode, 55 Throwable pLinkedException) { 56 super(pMessage, pErrorCode, pLinkedException); 57 } 58 } 59 | Popular Tags |