615N/A/*
615N/A * CDDL HEADER START
615N/A *
615N/A * The contents of this file are subject to the terms of the
615N/A * Common Development and Distribution License (the "License").
615N/A * You may not use this file except in compliance with the License.
615N/A *
615N/A * See LICENSE.txt included in this distribution for the specific
615N/A * language governing permissions and limitations under the License.
615N/A *
615N/A * When distributing Covered Code, include this CDDL HEADER in each
615N/A * file and include the License file at LICENSE.txt.
615N/A * If applicable, add the following below this CDDL HEADER, with the
615N/A * fields enclosed by brackets "[]" replaced with your own identifying
615N/A * information: Portions Copyright [yyyy] [name of copyright owner]
615N/A *
615N/A * CDDL HEADER END
615N/A */
615N/A
615N/A/*
615N/A * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
615N/A * Use is subject to license terms.
615N/A */
615N/A
615N/Apackage org.opensolaris.opengrok.history;
615N/A
615N/A/**
615N/A * Exception thrown when retrieval or manipulation of history information
615N/A * fails.
615N/A */
615N/Apublic class HistoryException extends Exception {
815N/A private static final long serialVersionUID = 1L;
615N/A
615N/A /**
615N/A * Construct a {@code HistoryException} with the specified message.
615N/A *
615N/A * @param msg the message string
615N/A */
615N/A public HistoryException(String msg) {
615N/A super(msg);
615N/A }
615N/A
615N/A /**
615N/A * Construct a {@code HistoryException} with the specified cause.
615N/A *
615N/A * @param cause the cause of the exception
615N/A */
615N/A public HistoryException(Throwable cause) {
615N/A super(cause);
615N/A }
615N/A
615N/A /**
615N/A * Construct a {@code HistoryException} with the specified message
615N/A * and cause.
615N/A *
615N/A * @param msg the message string
615N/A * @param cause the cause of the exception
615N/A */
615N/A public HistoryException(String msg, Throwable cause) {
615N/A super(msg, cause);
615N/A }
615N/A}