/*
* JBoss, Home of Professional Open Source.
* Copyright 2006, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.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: 57205 $
*/
public class DeploymentException extends NestedException
{
/** @since 4.0.2 */
private static final long serialVersionUID = 1416258464473965574L;
/**
* 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();
}
}