All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.jbi.JBIException Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
/**
 * @(#) JBIException.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: JBIException.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;

/**
 * JBIException is the top-level exception thrown by both JBI-supplied APIs and
 * component-provided SPIs.
 * 
 * @author JSR208 Expert Group
 */
public class JBIException extends java.lang.Exception {

	/**
	 * Creates a new instance of JBIException with the specified exception
	 * detail message.
	 * 
	 * @param message
	 *            the detail message for this exception
	 */
	public JBIException(java.lang.String message) {
		super(message);
	}

	/**
	 * Creates a new instance of JBIException with the specified exception
	 * detail 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 JBIException(java.lang.String message, java.lang.Throwable cause) {
		super(message, cause);
	}

	/**
	 * Creates a new instance of JBIException 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 JBIException(java.lang.Throwable cause) {
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy