FileDocCategorySizeDatePackage
BadCommandException.javaAPI DocGlassfish v2 API2683Mon May 14 15:28:44 BST 2007com.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