/***************************************
* *
* JBoss: The OpenSource J2EE WebOS *
* *
* Distributable under LGPL license. *
* See terms of license at gnu.org. *
* *
***************************************/
package org.jboss.deployment;
import org.jboss.util.NestedException;
/**
* Thrown by a deployer if an application component could not be
* deployed.
*
* @see DeployerMBean
*
* @author Toby Allsopp
* @version $Revision: 1.1 $
*/
public class DeploymentException
extends NestedException
{
/**
* Construct a DeploymentException with the specified detail
* message.
*
* @param msg Detail message.
*/
public DeploymentException(String msg) {
super(msg);
}
/**
* Construct a DeploymentException with the specified detail
* message and nested Throwable.
*
* @param msg Detail message.
* @param nested Nested Throwable.
*/
public DeploymentException(String msg, Throwable nested) {
super(msg, nested);
}
/**
* Construct a DeploymentException with the specified
* nested Throwable.
*
* @param nested Nested Throwable.
*/
public DeploymentException(Throwable nested) {
super(nested);
}
/**
* Construct a DeploymentException with no detail.
*/
public DeploymentException() {
super();
}
}