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

DestroyFailedException

public class DestroyFailedException extends Exception
Signals that a destroy operation failed.

This exception is thrown by credentials implementing the Destroyable interface when the destroy method fails.

version
1.8, 12/19/03

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


                           
      
	super();
    
public DestroyFailedException(String msg)
Constructs a DestroyFailedException 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