package com.triactive.jdo;
import javax.jdo.JDOFatalException;
public class CommitStateTransitionException extends JDOFatalException
{
public static final String MSG = "A database transaction has been committed, " +
"but the following exceptions were thrown while transitioning the state " +
"of the JDO objects participating in the transaction.";
public CommitStateTransitionException(java.lang.Exception[] nested)
{
super(MSG, nested);
}
}
|