Package jakarta.ejb
Class EJBAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jakarta.ejb.EJBException
jakarta.ejb.EJBAccessException
- All Implemented Interfaces:
Serializable
This exception indicates that client access to a business method was denied.
- Since:
- EJB 3.0
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an EJBAccessException with no detail message.EJBAccessException
(String message) Constructs an EJBAccessException with the specified detailed message. -
Method Summary
Methods inherited from class jakarta.ejb.EJBException
getCausedByException
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EJBAccessException
public EJBAccessException()Constructs an EJBAccessException with no detail message. -
EJBAccessException
Constructs an EJBAccessException with the specified detailed message.- Parameters:
message
- aString
object.
-