1 /***************************************************************************** 2 * Copyright (C) PicoContainer Organization. All rights reserved. * 3 * ------------------------------------------------------------------------- * 4 * The software in this package is published under the terms of the BSD * 5 * style license a copy of which has been included with this distribution in * 6 * the LICENSE.txt file. * 7 *****************************************************************************/ 8 package org.picocontainer.gems.lifecycle; 9 10 import org.picocontainer.PicoException; 11 12 /** 13 * Subclass of {@link PicoException} that is thrown when there is a problem 14 * invoking lifecycle methods via reflection. 15 * 16 * @author Paul Hammant 17 * @author Mauro Talevi 18 * @version $Revision: 1.3 $ 19 * @since 1.2 20 */ 21 public class ReflectionLifecycleException extends PicoException { 22 23 /** 24 * Construct a new exception with the specified cause and the specified detail message. 25 * 26 * @param message the message detailing the exception. 27 * @param cause the exception that caused this one. 28 */ 29 protected ReflectionLifecycleException(final String message, final Throwable cause) { 30 super(message, cause); 31 } 32 33 } 34