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

Quick Search    Search Deep

Source code: com/telefonicasoluciones/search/server/parser/xml/XMLParseException.java


1   /*
2    * XMLParseException.java
3    *
4    * Created on 5 de noviembre de 2002, 9:46
5    */
6   
7   package com.telefonicasoluciones.search.server.parser.xml;
8   
9   /**
10   *
11   * @author Ricardo Lorenzo
12   */
13  public class XMLParseException extends java.lang.Exception {
14      
15      /**
16       * Creates a new instance of <code>XMLParseException</code> without detail message.
17       */
18      public XMLParseException() {
19      }
20      
21      
22      /**
23       * Constructs an instance of <code>XMLParseException</code> with the specified detail message.
24       * @param msg the detail message.
25       */
26      public XMLParseException(String msg) {
27          super(msg);
28      }
29  }