FileDocCategorySizeDatePackage
CommandFailedException.javaAPI DocJavaMail 1.4.32651Tue Nov 17 10:38:10 GMT 2009com.sun.mail.iap

CommandFailedException

public class CommandFailedException extends ProtocolException
author
John Mani

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