|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| InvalidModuleException.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 is to report an invalid J2EE deployment module type.
|
|
| 12 |
*
|
|
| 13 |
* @author Laurent Etiemble
|
|
| 14 |
* @version $Revision: 1.1 $
|
|
| 15 |
* @since 1.0
|
|
| 16 |
*/
|
|
| 17 |
public class InvalidModuleException extends Exception |
|
| 18 |
{
|
|
| 19 |
/**
|
|
| 20 |
* Creates an new <code>InvalidModuleException</code> object.
|
|
| 21 |
*
|
|
| 22 |
* @param s a string indicating what was wrong with the module type.
|
|
| 23 |
*/
|
|
| 24 | 0 |
public InvalidModuleException(String s)
|
| 25 |
{
|
|
| 26 | 0 |
super(s);
|
| 27 |
} |
|
| 28 |
} |
|
| 29 |
|
|
||||||||||