1 package org.nanocontainer.deployer;2 3 import org.picocontainer.PicoException;4 5 /**6 *7 * Runtime Wrapper Exception for errors in deployment.8 *9 * @author Aslak Hellesøy10 * @version $Revision: 2947 $11 */12 public class DeploymentException extends PicoException {13 14 15 16 public DeploymentException(String message, Throwable t) {17 super(message,t);18 }19 20 public DeploymentException(Throwable t) {21 super(t);22 }23 }24