Ignore:
Timestamp:
02/03/16 23:24:10 (8 years ago)
Author:
Oliver Schonefeld
Message:
  • update/add copyright
  • fix typo in class name
  • minor changes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • FCSSimpleEndpoint/trunk/src/main/java/eu/clarin/sru/server/fcs/parser/QueryParserException.java

    r6882 r6935  
     1/**
     2 * This software is copyright (c) 2013-2016 by
     3 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
     4 * This is free software. You can redistribute it
     5 * and/or modify it under the terms described in
     6 * the GNU General Public License v3 of which you
     7 * should have received a copy. Otherwise you can download
     8 * it from
     9 *
     10 *   http://www.gnu.org/licenses/gpl-3.0.txt
     11 *
     12 * @copyright Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
     13 *
     14 * @license http://www.gnu.org/licenses/gpl-3.0.txt
     15 *  GNU General Public License v3
     16 */
    117package eu.clarin.sru.server.fcs.parser;
    218
     19
     20/**
     21 * Query parser exception.
     22 *
     23 */
    324@SuppressWarnings("serial")
    425public class QueryParserException extends Exception {
     26    /**
     27     * Constrctur.
     28     *
     29     * @param message
     30     *            an error message
     31     * @param cause
     32     *            the underlying cause for the error
     33     */
    534    public QueryParserException(String message, Throwable cause) {
    635        super(message, cause);
     
    837
    938
     39    /**
     40     * Constructor.
     41     *
     42     * @param message
     43     *            an error message
     44     */
    1045    public QueryParserException(String message) {
    1146        this(message, null);
    1247    }
    1348
    14 }
     49} // class QueryParserException
Note: See TracChangeset for help on using the changeset viewer.