FileDocCategorySizeDatePackage
ProtocolException.javaAPI DocJavaMail 1.4.33073Tue Nov 17 10:38:10 GMT 2009com.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 message)
Constructs a ProtocolException with the specified detail message.

param
message the detail message

	super(message);
    
public ProtocolException(String message, Throwable cause)
Constructs a ProtocolException with the specified detail message and cause.

param
message the detail message
param
cause the cause

	super(message, cause);
    
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;