Source code: com/telefonicasoluciones/search/server/HLIndexException.java
1 /*
2 * HLIndexException.java
3 *
4 * Created on April 11, 2002, 8:21 AM
5 */
6
7 package com.telefonicasoluciones.search.server;
8
9 /**
10 *
11 * @author root
12 * @version
13 */
14 public class HLIndexException extends java.lang.Exception {
15
16 /**
17 * Creates new <code>HLIndexException</code> without detail message.
18 */
19 public HLIndexException() {
20 }
21
22
23 /**
24 * Constructs an <code>HLIndexException</code> with the specified detail message.
25 * @param msg the detail message.
26 */
27 public HLIndexException(String msg) {
28 super(msg);
29 }
30 }
31
32