KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > objectserver > gtx > TransactionCommittedError


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.objectserver.gtx;
5
6 public class TransactionCommittedError extends Error JavaDoc {
7
8   public TransactionCommittedError() {
9     super();
10   }
11
12   public TransactionCommittedError(String JavaDoc message) {
13     super(message);
14   }
15
16   public TransactionCommittedError(String JavaDoc message, Throwable JavaDoc cause) {
17     super(message, cause);
18   }
19
20   public TransactionCommittedError(Throwable JavaDoc cause) {
21     super(cause);
22   }
23
24 }
25
Popular Tags