| java.lang.Object org.apache.openejb.jee.ApplicationException
ApplicationException | public class ApplicationException (Code) | | The application-exceptionType declares an application
exception. The declaration consists of:
- the exception class. When the container receives
an exception of this type, it is required to
forward this exception as an applcation exception
to the client regardless of whether it is a checked
or unchecked exception.
- an optional rollback element. If this element is
set to true, the container must rollback the current
transaction before forwarding the exception to the
client.
|
rollback | protected boolean rollback(Code) | | |
ApplicationException | public ApplicationException()(Code) | | |
ApplicationException | public ApplicationException(String exceptionClass, boolean rollback)(Code) | | |
getRollback | public boolean getRollback()(Code) | | |
setExceptionClass | public void setExceptionClass(String value)(Code) | | |
setRollback | public void setRollback(boolean value)(Code) | | |
|
|