
javax.enterprise.deploy.spi.exceptions.ConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jboss-jad-api_1.2_spec Show documentation
Show all versions of jboss-jad-api_1.2_spec Show documentation
The JavaEE Application Deployment 1.2 API classes
package javax.enterprise.deploy.spi.exceptions;
/**
* Errors while generating a configuration bean
*/
public class ConfigurationException extends Exception
{
// Constants -----------------------------------------------------
// Attributes ----------------------------------------------------
// Static --------------------------------------------------------
// Constructors --------------------------------------------------
/**
* Create an exception with a null reason.
*/
public ConfigurationException()
{
super();
}
/**
* Create an exception with a reason.
*
* @param reason the reason
*/
public ConfigurationException(String reason)
{
super(reason);
}
// Public --------------------------------------------------------
// Package protected ---------------------------------------------
// Protected -----------------------------------------------------
// Private -------------------------------------------------------
// Inner classes -------------------------------------------------
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy