FileDocCategorySizeDatePackage
ConcurrentAccessException.javaAPI DocGlassfish v2 API2786Fri May 04 22:35:54 BST 2007javax.ejb

ConcurrentAccessException

public class ConcurrentAccessException extends EJBException
A ConcurrentAccessException indicates that the client has attempted an invocation on a stateful session bean while another invocation is in progress.

Fields Summary
Constructors Summary
public ConcurrentAccessException()
Constructs an ConcurrentAccessException with no detail message.

    
public ConcurrentAccessException(String message)
Constructs an ConcurrentAccessException with the specified detailed message.

        super(message);
    
public ConcurrentAccessException(String message, Exception ex)
Constructs an ConcurrentAccessException with the specified detail message and a nested exception.

        super(message, ex);
    
Methods Summary