KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > objectserver > tx > NoSuchBatchException


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.tx;
5
6 public class NoSuchBatchException extends Exception JavaDoc {
7
8   public NoSuchBatchException() {
9     super();
10   }
11
12   public NoSuchBatchException(String JavaDoc message) {
13     super(message);
14   }
15
16   public NoSuchBatchException(String JavaDoc message, Throwable JavaDoc cause) {
17     super(message, cause);
18   }
19
20   public NoSuchBatchException(Throwable JavaDoc cause) {
21     super(cause);
22   }
23
24 }
25
Popular Tags