GemfireTransactionCommitException should extend Spring's extension
SGF-84
This commit is contained in:
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
package org.springframework.data.gemfire;
|
package org.springframework.data.gemfire;
|
||||||
|
|
||||||
import com.gemstone.gemfire.cache.TransactionException;
|
import org.springframework.transaction.TransactionException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gemfire-specific subclass of {@link org.springframework.transaction.TransactionException}, indicating a transaction failure at commit time.
|
* Gemfire-specific subclass of {@link org.springframework.transaction.TransactionException}, indicating a transaction failure at commit time.
|
||||||
@@ -25,10 +25,6 @@ import com.gemstone.gemfire.cache.TransactionException;
|
|||||||
*/
|
*/
|
||||||
public class GemfireTransactionCommitException extends TransactionException {
|
public class GemfireTransactionCommitException extends TransactionException {
|
||||||
|
|
||||||
public GemfireTransactionCommitException() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
public GemfireTransactionCommitException(String message, Throwable cause) {
|
public GemfireTransactionCommitException(String message, Throwable cause) {
|
||||||
super(message, cause);
|
super(message, cause);
|
||||||
}
|
}
|
||||||
@@ -36,8 +32,4 @@ public class GemfireTransactionCommitException extends TransactionException {
|
|||||||
public GemfireTransactionCommitException(String message) {
|
public GemfireTransactionCommitException(String message) {
|
||||||
super(message);
|
super(message);
|
||||||
}
|
}
|
||||||
|
|
||||||
public GemfireTransactionCommitException(Throwable cause) {
|
|
||||||
super(cause);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user