/* * @(#)RefreshFailedException.java 1.8 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package javax.security.auth; /** * Signals that a refresh operation failed. * *

This exception is thrown by credentials implementing * the Refreshable interface when the refresh * method fails. * * @version 1.8, 12/19/03 */ public class RefreshFailedException extends Exception { private static final long serialVersionUID = 5058444488565265840L; /** * Constructs a RefreshFailedException with no detail message. A detail * message is a String that describes this particular exception. */ public RefreshFailedException() { super(); } /** * Constructs a RefreshFailedException with the specified detail * message. A detail message is a String that describes this particular * exception. * *

* * @param msg the detail message. */ public RefreshFailedException(String msg) { super(msg); } }