1. /*
  2. * @(#)RefreshFailedException.java 1.8 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 javax.security.auth;
  8. /**
  9. * Signals that a <code>refresh</code> operation failed.
  10. *
  11. * <p> This exception is thrown by credentials implementing
  12. * the <code>Refreshable</code> interface when the <code>refresh</code>
  13. * method fails.
  14. *
  15. * @version 1.8, 12/19/03
  16. */
  17. public class RefreshFailedException extends Exception {
  18. private static final long serialVersionUID = 5058444488565265840L;
  19. /**
  20. * Constructs a RefreshFailedException with no detail message. A detail
  21. * message is a String that describes this particular exception.
  22. */
  23. public RefreshFailedException() {
  24. super();
  25. }
  26. /**
  27. * Constructs a RefreshFailedException with the specified detail
  28. * message. A detail message is a String that describes this particular
  29. * exception.
  30. *
  31. * <p>
  32. *
  33. * @param msg the detail message.
  34. */
  35. public RefreshFailedException(String msg) {
  36. super(msg);
  37. }
  38. }