1 package org.smartcomps.twister.common.transaction;
2
3 /***
4 * Thrown when a problem occurs when initializing a TransactionalResource,
5 * beginning, commiting or rollbacking a transaction.
6 */
7 public class TransactionException extends Exception {
8
9 public TransactionException(String message) {
10 super(message);
11 }
12
13 public TransactionException(String message, Throwable cause) {
14 super(message, cause);
15 }
16
17 public TransactionException(Throwable cause) {
18 super(cause);
19 }
20 }
This page was automatically generated by Maven