1. /*
  2. * @(#)ActivateFailedException.java 1.10 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.rmi.activation;
  8. /**
  9. * This exception is thrown by the RMI runtime when activation
  10. * fails during a remote call to an activatable object.
  11. *
  12. * @author Ann Wollrath
  13. * @version 1.10, 12/19/03
  14. * @since 1.2
  15. */
  16. public class ActivateFailedException extends java.rmi.RemoteException {
  17. /** indicate compatibility with the Java 2 SDK v1.2 version of class */
  18. private static final long serialVersionUID = 4863550261346652506L;
  19. /**
  20. * Constructs an <code>ActivateFailedException</code> with the specified
  21. * detail message.
  22. *
  23. * @param s the detail message
  24. * @since 1.2
  25. */
  26. public ActivateFailedException(String s) {
  27. super(s);
  28. }
  29. /**
  30. * Constructs an <code>ActivateFailedException</code> with the specified
  31. * detail message and nested exception.
  32. *
  33. * @param s the detail message
  34. * @param ex the nested exception
  35. * @since 1.2
  36. */
  37. public ActivateFailedException(String s, Exception ex) {
  38. super(s, ex);
  39. }
  40. }