FileDocCategorySizeDatePackage
RemoteProcessException.javaAPI DocApache Tomcat 6.0.141677Fri Jul 20 04:20:32 BST 2007org.apache.catalina.tribes

RemoteProcessException

public class RemoteProcessException extends RuntimeException

Title: RemoteProcessException

Description: Message thrown by a sender when USE_SYNC_ACK receives a FAIL_ACK_COMMAND.
This means that the message was received on the remote node but the processing of the message failed. This message will be embedded in a ChannelException.FaultyMember

see
ChannelException
author
Filip Hanik
version
1.0

Fields Summary
Constructors Summary
public RemoteProcessException()

        super();
    
public RemoteProcessException(String message)

        super(message);
    
public RemoteProcessException(String message, Throwable cause)

        super(message, cause);
    
public RemoteProcessException(Throwable cause)

        super(cause);
    
Methods Summary