59 if (e instanceof RollbackException) {
60 e = e.getCause() != null ? e.getCause() : e;
64 ExceptionConverter converter = (ExceptionConverter)
factory;
65 Throwable throwable = converter.convert(e);
66 if (throwable == null)
continue;
67 if (throwable instanceof RuntimeException) {
68 throw (RuntimeException)throwable;
70 throw new RuntimeException(throwable);
74 if (e instanceof RuntimeException) {
75 throw (RuntimeException)e;
77 throw new RuntimeException(e);
List< ProviderFactory > getProviderFactories(Class<? extends Provider > clazz)
KeycloakSessionFactory factory
Definition: JtaTransactionWrapper.java:40