32 lines
472 B
Java
32 lines
472 B
Java
package info.ebenoit.ebul.cmp;
|
|
|
|
|
|
@SuppressWarnings( "serial" )
|
|
public class ComponentDefinitionException
|
|
extends ComponentException
|
|
{
|
|
|
|
public ComponentDefinitionException( )
|
|
{
|
|
super( );
|
|
}
|
|
|
|
|
|
public ComponentDefinitionException( String message )
|
|
{
|
|
super( message );
|
|
}
|
|
|
|
|
|
public ComponentDefinitionException( Throwable cause )
|
|
{
|
|
super( cause );
|
|
}
|
|
|
|
|
|
public ComponentDefinitionException( String message , Throwable cause )
|
|
{
|
|
super( message , cause );
|
|
}
|
|
|
|
}
|