1 22 package org.jboss.invocation; 23 24 import java.rmi.RemoteException ; 25 26 34 public class ServiceUnavailableException extends RemoteException  35 { 36 public ServiceUnavailableException() 37 { 38 super(); 39 } 40 41 public ServiceUnavailableException(String s) 42 { 43 super(s); 44 } 45 46 public ServiceUnavailableException(String s, Throwable cause) 47 { 48 super(s, cause); 49 } 50 } 51 | Popular Tags |