KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > exception > TCClassNotFoundException


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

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