01: package com.sun.portal.search.autoclassify;
02:
03: /** <p>Title: HeartBeatFailure</p>
04: * <p>Description: An exception for unable to create heartbeat</p>
05: * <p>Copyright: Copyright (c) 2002</p>
06: * <p>Company: Sun Microsystems</p>
07: * @author unascribed
08: * @version 1.0
09: */
10:
11: public class HeartBeatFailureException extends Exception {
12:
13: /** Construction with explanation message
14: * @param message Explanation message
15: */
16: public HeartBeatFailureException(String message) {
17: }
18: }
|