001/*
002 * (C) Copyright 2010-2012 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Julien Carsique
016 *
017 * $Id$
018 */
019
020package org.nuxeo.launcher.config;
021
022/**
023 * @author jcarsique
024 */
025public class ConfigurationException extends Exception {
026
027    private static final long serialVersionUID = 1L;
028
029    public ConfigurationException(String message, Throwable throwable) {
030        super(message, throwable);
031    }
032
033    public ConfigurationException(Throwable throwable) {
034        super(throwable);
035    }
036
037    /**
038     * @since 5.4.2
039     * @param message Error message
040     */
041    public ConfigurationException(String message) {
042        super(message);
043    }
044
045}