FileDocCategorySizeDatePackage
CommandFailedException.javaAPI DocGlassfish v2 API2707Mon May 14 15:28:44 BST 2007com.sun.mail.iap

CommandFailedException

public class CommandFailedException extends ProtocolException
author
John Mani

(Omit source code)

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public CommandFailedException()
Constructs an CommandFailedException with no detail message.


                
      
	super();
    
public CommandFailedException(String s)
Constructs an CommandFailedException with the specified detail message.

param
s the detail message

	super(s);
    
public CommandFailedException(Response r)
Constructs an CommandFailedException with the specified Response.

param
r the Response.

	super(r);
    
Methods Summary