KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > triactive > jdo > CommitStateTransitionException


1 package com.triactive.jdo;
2
3 import javax.jdo.JDOFatalException;
4
5 public class CommitStateTransitionException extends JDOFatalException
6 {
7     public static final String JavaDoc 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 JavaDoc[] nested)
12     {
13         super(MSG, nested);
14     }
15
16 }
17
Popular Tags