public class ConcurrentAccessException extends EJBException
Constructor and Description |
---|
ConcurrentAccessException()
Constructs an ConcurrentAccessException with no detail message.
|
ConcurrentAccessException(java.lang.String message)
Constructs an ConcurrentAccessException with the specified detailed
message.
|
ConcurrentAccessException(java.lang.String message,
java.lang.Exception ex)
Constructs an ConcurrentAccessException with the specified detail message
and a nested exception.
|
getCausedByException
public ConcurrentAccessException()
public ConcurrentAccessException(java.lang.String message)
message
- The detail message. The detail message is saved for later
retrieval by the Throwable.getMessage()
method.public ConcurrentAccessException(java.lang.String message, java.lang.Exception ex)
message
- the detail message (which is saved for later retrieval by the
Throwable.getMessage()
method).ex
- The cause (which is saved for later retrieval by the
Throwable.getCause()
method). (A null value is permitted,
and indicates that the cause is nonexistent or unknown.)