/*************************************** * * * 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.4.1 $ */ public class DeploymentException extends NestedException { /** * Rethrow a throwable as a deployment exception if it isn't already. * * @param message the message * @param t the throwable * @throws a DeploymentException */ public static void rethrowAsDeploymentException(String message, Throwable t) throws DeploymentException { if (t instanceof DeploymentException) throw (DeploymentException) t; else throw new DeploymentException(message, t); } /** * 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(); } }