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