Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/telefonicasoluciones/search/server/HLHandlerException.java


1   package com.telefonicasoluciones.search.server;
2   
3   /**
4    * Excepción de enlace.
5    * Creation date: (17/04/2001 9:57:14)
6    *     
7    * @author: Bodhisatva
8    * ArtMedia Company
9    */
10  public class HLHandlerException extends Exception {
11    private String message;
12  /**
13   * HLSyncronizeException constructor comment.
14   */
15          public HLHandlerException() {
16    super();
17  }
18  /**
19   * HLSyncronizeException constructor comment.
20   * @param s java.lang.String
21   */
22  public HLHandlerException(String s) {
23    super(s);
24    message=s;
25  }
26  }