FileDocCategorySizeDatePackage
RefreshFailedException.javaAPI DocJava SE 5 API1123Fri Aug 26 14:57:46 BST 2005javax.security.auth

RefreshFailedException

public class RefreshFailedException extends Exception
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

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public RefreshFailedException()
Constructs a RefreshFailedException with no detail message. A detail message is a String that describes this particular exception.


                           
      
	super();
    
public RefreshFailedException(String msg)
Constructs a RefreshFailedException with the specified detail message. A detail message is a String that describes this particular exception.

param
msg the detail message.

	super(msg);
    
Methods Summary