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

ProtocolException

public class ProtocolException extends Exception
author
John Mani

Fields Summary
protected transient Response
response
private static final long
serialVersionUID
Constructors Summary
public ProtocolException()
Constructs a ProtocolException with no detail message.


                
      
	super();
    
public ProtocolException(String s)
Constructs a ProtocolException with the specified detail message.

param
s the detail message

	super(s);
    
public ProtocolException(Response r)
Constructs a ProtocolException with the specified Response object.

	super(r.toString());
	response = r;
    
Methods Summary
public com.sun.mail.iap.ResponsegetResponse()
Return the offending Response object.

	return response;