javax.jbi.management.DeploymentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of petals-jbi Show documentation
Show all versions of petals-jbi Show documentation
The JBI specification library
/**
* @(#) DeploymentException.java
*
* PETALS - PETALS Services Platform.
* Copyright (c) 2005 Fossil E-Commerce, http://www.fossilec.com/
*
* This library 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 library 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 library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* -------------------------------------------------------------------------
* $Id: DeploymentException.java 69 2006-01-17 16:00:26Z rmarins $
* -------------------------------------------------------------------------
*/
//
// This source code implements specifications defined by the Java
// Community Process. In order to remain compliant with the specification
// DO NOT add / change / or delete method signatures!
//
package javax.jbi.management;
/**
* DeploymentException is an exception thrown by the Deployment Service and the
* Service Unit Manager.
*
* @author JSR208 Expert Group
*/
public class DeploymentException extends javax.jbi.JBIException {
/**
* Creates a new instance of DeploymentException with an exception message.
*
* @param message
* the detail message for this exception.
*/
public DeploymentException(java.lang.String message) {
super(message);
}
/**
* Creates a new instance of DeploymentException with the specified message
* and cause.
*
* @param message
* the detail message for this exception.
* @param cause
* Error
or Exception
which
* represents the cause of the problem (null
if
* none, or if the cause is not known)
*/
public DeploymentException(java.lang.String message,
java.lang.Throwable cause) {
super(message, cause);
}
/**
* Creates a new instance of DeploymentException with the specified cause.
*
* @param cause
* Error
or Exception
which
* represents the cause of the problem (null
if
* none, or if the cause is not known)
*/
public DeploymentException(java.lang.Throwable cause) {
super(cause);
}
}