001 package org.nanocontainer.deployer;
002
003 import org.picocontainer.PicoException;
004
005 /**
006 *
007 * Runtime Wrapper Exception for errors in deployment.
008 *
009 * @author Aslak Hellesøy
010 * @version $Revision: 2947 $
011 */
012 public class DeploymentException extends PicoException {
013
014
015
016 public DeploymentException(String message, Throwable t) {
017 super(message,t);
018 }
019
020 public DeploymentException(Throwable t) {
021 super(t);
022 }
023 }