1 45 package org.exolab.jms.net.uri; 46 47 import java.rmi.RemoteException ; 48 49 50 56 public class InvalidURIException extends RemoteException { 57 58 61 private static final long serialVersionUID = 1L; 62 63 64 68 protected InvalidURIException() { 69 } 70 71 77 public InvalidURIException(String detail) { 78 super(detail); 79 } 80 81 88 public InvalidURIException(String detail, Throwable nested) { 89 super(detail, nested); 90 } 91 92 } 93 | Popular Tags |