1. /*
  2. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  3. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  4. */
  5. package javax.security.auth;
  6. /**
  7. * Signals that a <code>refresh</code> operation failed.
  8. *
  9. * <p> This exception is thrown by credentials implementing
  10. * the <code>Refreshable</code> interface when the <code>refresh</code>
  11. * method fails.
  12. *
  13. * @version 1.3, 01/11/00
  14. */
  15. public class RefreshFailedException extends Exception {
  16. /**
  17. * Constructs a RefreshFailedException with no detail message. A detail
  18. * message is a String that describes this particular exception.
  19. */
  20. public RefreshFailedException() {
  21. super();
  22. }
  23. /**
  24. * Constructs a RefreshFailedException with the specified detail
  25. * message. A detail message is a String that describes this particular
  26. * exception.
  27. *
  28. * <p>
  29. *
  30. * @param msg the detail message.
  31. */
  32. public RefreshFailedException(String msg) {
  33. super(msg);
  34. }
  35. }