1 7 8 package java.rmi.server; 9 10 import java.rmi.RemoteException ; 11 12 23 @Deprecated  24 public class SkeletonNotFoundException extends RemoteException { 25 26 27 private static final long serialVersionUID = -7860299673822761231L; 28 29 36 public SkeletonNotFoundException(String s) { 37 super(s); 38 } 39 40 48 public SkeletonNotFoundException(String s, Exception ex) { 49 super(s, ex); 50 } 51 } 52 | Popular Tags |