You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Probably, it is necessary to implement a transaction rollback according to @javax.ejb.ApplicationException.
@ApplicationException(rollback=true)
public class EncryptionException extends Exception {
...
}
If an error occurs, the successor to RuntimeException, the system rolls back the transaction.
If there is another error, the system looks for the ApplicationException and makes a decision to roll back the transaction.