KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > objectserver > managedobject > bytecode > ClassNotCompatableException


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.managedobject.bytecode;
5
6 import com.tc.exception.TCRuntimeException;
7
8 public class ClassNotCompatableException extends TCRuntimeException {
9
10   public ClassNotCompatableException() {
11     super();
12   }
13
14   public ClassNotCompatableException(String JavaDoc message) {
15     super(message);
16   }
17
18   public ClassNotCompatableException(Throwable JavaDoc cause) {
19     super(cause);
20   }
21
22   public ClassNotCompatableException(String JavaDoc message, Throwable JavaDoc cause) {
23     super(message, cause);
24   }
25
26 }
27
Popular Tags