1. /*
  2. * @(#)ActivateFailedException.java 1.7 00/02/02
  3. *
  4. * Copyright 1998-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.activation;
  11. /**
  12. * This exception is thrown by the RMI runtime when activation
  13. * fails during a remote call to an activatable object.
  14. *
  15. * @author Ann Wollrath
  16. * @version 1.7, 02/02/00
  17. * @since 1.2
  18. */
  19. public class ActivateFailedException extends java.rmi.RemoteException {
  20. /** indicate compatibility with the Java 2 SDK v1.2 version of class */
  21. private static final long serialVersionUID = 4863550261346652506L;
  22. /**
  23. * Constructs an <code>ActivateFailedException</code> with the specified
  24. * detail message.
  25. *
  26. * @param s the detail message
  27. * @since 1.2
  28. */
  29. public ActivateFailedException(String s) {
  30. super(s);
  31. }
  32. /**
  33. * Constructs an <code>ActivateFailedException</code> with the specified
  34. * detail message and nested exception.
  35. *
  36. * @param s the detail message
  37. * @param ex the nested exception
  38. * @since 1.2
  39. */
  40. public ActivateFailedException(String s, Exception ex) {
  41. super(s, ex);
  42. }
  43. }