FileDocCategorySizeDatePackage
ParsingException.javaAPI DocJavaMail 1.4.32609Tue Nov 17 10:38:10 GMT 2009com.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