ref #6368 remove TaxonNameBase subclasses
[cdmlib.git] / cdmlib-services / src / main / java / eu / etaxonomy / cdm / api / service / search / LuceneParseException.java
1 /**
2 * Copyright (C) 2017 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.cdm.api.service.search;
10
11 /**
12 * Wrapper class for org.apache.lucene.queryparser.classic.ParseException
13 * @author pplitzner
14 * @since Apr 7, 2017
15 *
16 */
17 @SuppressWarnings("serial")
18 public class LuceneParseException extends Exception {
19
20 /**
21 * @param message
22 */
23 public LuceneParseException(String message) {
24 super(message);
25 // TODO Auto-generated constructor stub
26 }
27
28 }