AccessLocalExceptionpublic class AccessLocalException extends EJBException An AccessLocalException is thrown to indicate that the caller does not
have permission to call the method. This exception is thrown to
local clients. |
Constructors Summary |
---|
public AccessLocalException()Constructs an AccessLocalException with no detail message.
| public AccessLocalException(String message)Constructs an AccessLocalException with the specified
detail message.
super(message);
| public AccessLocalException(String message, Exception ex)Constructs an AccessLocalException with the specified
detail message and a nested exception.
super(message, ex);
|
|