1. /*
  2. * @(#)SkeletonMismatchException.java 1.11 00/02/02
  3. *
  4. * Copyright 1996-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.rmi.server;
  11. import java.rmi.RemoteException;
  12. /**
  13. * This exception is thrown when a call is received that does not
  14. * match the available skeleton. It indicates either that the
  15. * remote method names or signatures in this interface have changed or
  16. * that the stub class used to make the call and the skeleton
  17. * receiving the call were not generated by the same version of
  18. * the stub compiler (<code>rmic</code>).
  19. *
  20. * @version 1.11, 02/02/00
  21. * @author Roger Riggs
  22. * @since JDK1.1
  23. * @deprecated no replacement. Skeletons are no longer required for remote
  24. * method calls in the Java 2 platform v1.2 and greater.
  25. */
  26. public class SkeletonMismatchException extends RemoteException {
  27. /* indicate compatibility with JDK 1.1.x version of class */
  28. private static final long serialVersionUID = -7780460454818859281L;
  29. /**
  30. * Constructs a new <code>SkeletonMismatchException</code> with
  31. * a specified detail message.
  32. *
  33. * @param s the detail message
  34. * @since JDK1.1
  35. * @deprecated no replacement
  36. */
  37. public SkeletonMismatchException(String s) {
  38. super(s);
  39. }
  40. }