1 /** 2 * Copyright (C) 2005 - Bull S.A. 3 * 4 * CAROL: Common Architecture for RMI ObjectWeb Layer 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either 9 * version 2.1 of the License, or any later version. 10 * 11 * This library is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * Lesser General Public License for more details. 15 * 16 * You should have received a copy of the GNU Lesser General Public 17 * License along with this library; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 19 * USA 20 * 21 * -------------------------------------------------------------------------- 22 * $Id: ConfigurationException.java,v 1.1 2005/04/07 15:07:07 benoitf Exp $ 23 * -------------------------------------------------------------------------- 24 */ 25 package org.objectweb.carol.util.configuration; 26 27 /** 28 * Exception used for error when managing configurations 29 * @author Florent Benoit 30 */ 31 public class ConfigurationException extends Exception { 32 33 /** 34 * Constructs a new exception with the specified detail message. The cause 35 * is not initialized, and may subsequently be initialized by a call to 36 * {@link #initCause}. 37 * @param message the detail message. The detail message is saved for later 38 * retrieval by the {@link #getMessage()} method. 39 */ 40 public ConfigurationException(String message) { 41 super(message); 42 } 43 44 /** 45 * Constructs a new exception with the specified detail message and cause. 46 * <p> 47 * Note that the detail message associated with <code>cause</code> is 48 * <i>not</i> automatically incorporated in this exception's detail 49 * message. 50 * @param message the detail message (which is saved for later retrieval by 51 * the {@link #getMessage()} method). 52 * @param cause the cause (which is saved for later retrieval by the 53 * {@link #getCause()} method). (A <tt>null</tt> value is 54 * permitted, and indicates that the cause is nonexistent or 55 * unknown.) 56 */ 57 public ConfigurationException(String message, Throwable cause) { 58 super(message, cause); 59 } 60 61 } 62