01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.exception;
06:
07: /**
08: * Terracotta equivalent of ClassNotFoundException - class is not available on this VM.
09: */
10: public class TCClassNotFoundException extends TCRuntimeException {
11:
12: public TCClassNotFoundException() {
13: super ();
14: }
15:
16: public TCClassNotFoundException(String message) {
17: super (message);
18: }
19:
20: public TCClassNotFoundException(Throwable cause) {
21: super (cause);
22: }
23:
24: public TCClassNotFoundException(String message, Throwable cause) {
25: super(message, cause);
26: }
27:
28: }
|