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