ConcurrentAccessExceptionpublic 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. |
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);
|
|