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

ParsingException

public class ParsingException extends ProtocolException
author
John Mani

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


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

param
s the detail message

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

param
r the Response

	super(r);
    
Methods Summary