1 package com.triactive.jdo; 2 3 import javax.jdo.JDOFatalException; 4 5 public class CommitStateTransitionException extends JDOFatalException 6 { 7 public static final String MSG = "A database transaction has been committed, " + 8 "but the following exceptions were thrown while transitioning the state " + 9 "of the JDO objects participating in the transaction."; 10 11 public CommitStateTransitionException(java.lang.Exception [] nested) 12 { 13 super(MSG, nested); 14 } 15 16 } 17 | Popular Tags |