1. /*
  2. * @(#)RefreshFailedException.java 1.6 03/01/23
  3. *
  4. * Copyright 2003 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.6, 01/23/03
  16. */
  17. public class RefreshFailedException extends Exception {
  18. /**
  19. * Constructs a RefreshFailedException with no detail message. A detail
  20. * message is a String that describes this particular exception.
  21. */
  22. public RefreshFailedException() {
  23. super();
  24. }
  25. /**
  26. * Constructs a RefreshFailedException with the specified detail
  27. * message. A detail message is a String that describes this particular
  28. * exception.
  29. *
  30. * <p>
  31. *
  32. * @param msg the detail message.
  33. */
  34. public RefreshFailedException(String msg) {
  35. super(msg);
  36. }
  37. }