For example,
If I call EJB method from web context. EJB has Container Managed Transaction(CMT) with Local Bean and its method has required_new transactional attribute.
What does client gets if EJB method throws System Exception?
I mean, transaction is rolled back. So, Does client gets EJBTransactionRolledBackException or simply EJBException?
Thanks in advance.