javax.ejb
Annotation Type ApplicationException


@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface ApplicationException

Annotation for identifying an Exception class as an Application Exception, which does not cause a transaction rollback


Optional Element Summary
 boolean inherited
          Indicates whether the application exception designation should apply to subclasses of the annotated exception class.
 boolean rollback
          Indicates whether the container should cause the transaction to rollback when the exception is thrown.
 

inherited

public abstract boolean inherited
Indicates whether the application exception designation should apply to subclasses of the annotated exception class.

Default:
true

rollback

public abstract boolean rollback
Indicates whether the container should cause the transaction to rollback when the exception is thrown.

Default:
false