Remove dependency to JTA
[lgpl/argeo-commons.git] / org.argeo.enterprise / src / org / argeo / osgi / transaction / SimpleRollbackException.java
diff --git a/org.argeo.enterprise/src/org/argeo/osgi/transaction/SimpleRollbackException.java b/org.argeo.enterprise/src/org/argeo/osgi/transaction/SimpleRollbackException.java
new file mode 100644 (file)
index 0000000..cf8a80b
--- /dev/null
@@ -0,0 +1,15 @@
+package org.argeo.osgi.transaction;
+
+/** Internal unchecked rollback exception. */
+class SimpleRollbackException extends RuntimeException {
+       private static final long serialVersionUID = 8055601819719780566L;
+
+       public SimpleRollbackException() {
+               super();
+       }
+
+       public SimpleRollbackException(Throwable cause) {
+               super(cause);
+       }
+
+}