01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.objectserver.managedobject.bytecode;
05:
06: import com.tc.exception.TCRuntimeException;
07:
08: public class ClassNotCompatableException extends TCRuntimeException {
09:
10: public ClassNotCompatableException() {
11: super ();
12: }
13:
14: public ClassNotCompatableException(String message) {
15: super (message);
16: }
17:
18: public ClassNotCompatableException(Throwable cause) {
19: super (cause);
20: }
21:
22: public ClassNotCompatableException(String message, Throwable cause) {
23: super(message, cause);
24: }
25:
26: }
|