|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| ConfigurationException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 |
/*
|
|
| 2 |
* EJTools, the Enterprise Java Tools
|
|
| 3 |
*
|
|
| 4 |
* Distributable under LGPL license.
|
|
| 5 |
* See terms of license at www.gnu.org.
|
|
| 6 |
*/
|
|
| 7 |
package javax.enterprise.deploy.spi.exceptions;
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
/**
|
|
| 11 |
* This exception reports errors in generating a configuration bean.
|
|
| 12 |
*
|
|
| 13 |
* @author Laurent Etiemble
|
|
| 14 |
* @version $Revision: 1.1 $
|
|
| 15 |
* @since 1.0
|
|
| 16 |
*/
|
|
| 17 |
public class ConfigurationException extends Exception |
|
| 18 |
{
|
|
| 19 |
/** Creates new <code>ConfigurationException</code> without detail message. */
|
|
| 20 | 0 |
public ConfigurationException()
|
| 21 |
{
|
|
| 22 | 0 |
super();
|
| 23 |
} |
|
| 24 |
|
|
| 25 |
|
|
| 26 |
/**
|
|
| 27 |
* Constructs an <code>ConfigurationException</code> with the specified detail
|
|
| 28 |
* message.
|
|
| 29 |
*
|
|
| 30 |
* @param msg the detail message.
|
|
| 31 |
*/
|
|
| 32 | 0 |
public ConfigurationException(String msg)
|
| 33 |
{
|
|
| 34 | 0 |
super(msg);
|
| 35 |
} |
|
| 36 |
|
|
| 37 |
|
|
| 38 |
/**
|
|
| 39 |
* Constructor for the ConfigurationException object
|
|
| 40 |
*
|
|
| 41 |
* @param cause Description of the Parameter
|
|
| 42 |
*/
|
|
| 43 | 0 |
public ConfigurationException(Throwable cause)
|
| 44 |
{
|
|
| 45 | 0 |
super(cause);
|
| 46 |
} |
|
| 47 |
|
|
| 48 |
|
|
| 49 |
/**
|
|
| 50 |
* Constructor for the ConfigurationException object
|
|
| 51 |
*
|
|
| 52 |
* @param message Description of the Parameter
|
|
| 53 |
* @param cause Description of the Parameter
|
|
| 54 |
*/
|
|
| 55 | 0 |
public ConfigurationException(String message, Throwable cause)
|
| 56 |
{
|
|
| 57 | 0 |
super(message, cause);
|
| 58 |
} |
|
| 59 |
} |
|
| 60 |
|
|
||||||||||