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

BadCommandException

public class BadCommandException extends ProtocolException
author
John Mani

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


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

param
s the detail message

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

param
r the Response

	super(r);
    
Methods Summary