Source code: com/telefonicasoluciones/search/server/HLConfigException.java
1 package com.telefonicasoluciones.search.server;
2
3 /**
4 * Excepción de configuración.
5 * Creation date: (15/11/2001 9:43:08)
6 *
7 * @author: Bodhisatva
8 * ArtMedia Company
9 */
10 public class HLConfigException extends Exception{
11 private String message;
12 /**
13 * Constructor de HLConfigException.
14 */
15 public HLConfigException() {
16 super();
17 }
18 /**
19 * Constructor de HLConfigException.
20 */
21 public HLConfigException(String message) {
22 super(message);
23 this.message=message;
24 }
25 /**
26 * Retorna el mensaje de error.
27 * Creation date: (15/11/2001 9:44:20)
28 * @return java.lang.String
29 */
30 public String toString() {
31 return message;
32 }
33 }