01: package com.triactive.jdo;
02:
03: import javax.jdo.JDOFatalException;
04:
05: public class CommitStateTransitionException extends JDOFatalException {
06: public static final String MSG = "A database transaction has been committed, "
07: + "but the following exceptions were thrown while transitioning the state "
08: + "of the JDO objects participating in the transaction.";
09:
10: public CommitStateTransitionException(java.lang.Exception[] nested) {
11: super(MSG, nested);
12: }
13:
14: }
|