* Incomplete class for component state tracking * Incomplete components registry class * Various exceptions for problems that can occur during component registration
34 lines
513 B
Java
34 lines
513 B
Java
package info.ebenoit.ebul.cmp;
|
|
|
|
|
|
public class ComponentManagementException
|
|
extends ComponentException
|
|
{
|
|
|
|
private static final long serialVersionUID = -6185870047722371385L;
|
|
|
|
|
|
public ComponentManagementException( )
|
|
{
|
|
super( );
|
|
}
|
|
|
|
|
|
public ComponentManagementException( String message , Throwable cause )
|
|
{
|
|
super( message , cause );
|
|
}
|
|
|
|
|
|
public ComponentManagementException( String message )
|
|
{
|
|
super( message );
|
|
}
|
|
|
|
|
|
public ComponentManagementException( Throwable cause )
|
|
{
|
|
super( cause );
|
|
}
|
|
|
|
}
|