312N/A/*
312N/A * CDDL HEADER START
312N/A *
312N/A * The contents of this file are subject to the terms of the
312N/A * Common Development and Distribution License (the "License").
312N/A * You may not use this file except in compliance with the License.
312N/A *
312N/A * See LICENSE.txt included in this distribution for the specific
312N/A * language governing permissions and limitations under the License.
312N/A *
312N/A * When distributing Covered Code, include this CDDL HEADER in each
312N/A * file and include the License file at LICENSE.txt.
312N/A * If applicable, add the following below this CDDL HEADER, with the
312N/A * fields enclosed by brackets "[]" replaced with your own identifying
312N/A * information: Portions Copyright [yyyy] [name of copyright owner]
312N/A *
312N/A * CDDL HEADER END
312N/A */
312N/A
312N/A/*
312N/A * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
312N/A * Use is subject to license terms.
312N/A */
312N/Apackage org.opensolaris.opengrok.index;
312N/A
312N/A/**
312N/A *
312N/A * @author Jan Berg
312N/A */
312N/Apublic class IndexerException extends Exception {
312N/A
312N/A IndexerException(String string) {
312N/A super(string);
312N/A }
312N/A
312N/A}