1 25 26 package org.objectweb.petals.jbi.management.service; 27 28 import javax.jbi.JBIException; 29 30 34 public class ManagementException extends JBIException { 35 38 private static final long serialVersionUID = 1L; 39 40 public ManagementException(String message) { 41 super(message); 42 } 43 44 public ManagementException(String message, Throwable cause) { 45 super(message, cause); 46 } 47 48 public ManagementException(Throwable cause) { 49 super(cause); 50 } 51 } 52 | Popular Tags |