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