1 22 23 package org.objectweb.petals.component.common; 24 25 import javax.jbi.JBIException; 26 27 public class PEtALSComponentSDKException extends JBIException { 28 29 32 private static final long serialVersionUID = 1494074986698995541L; 33 34 37 38 public PEtALSComponentSDKException(String message, Throwable cause) { 39 super(message, cause); 40 } 41 42 public PEtALSComponentSDKException(String message) { 43 super(message); 44 } 45 46 public PEtALSComponentSDKException(Throwable cause) { 47 super(cause); 48 } 49 } 50 | Popular Tags |