Components registry - Component registration

* Incomplete class for component state tracking
* Incomplete components registry class
* Various exceptions for problems that can occur during component
registration
This commit is contained in:
Emmanuel BENOîT 2015-09-15 11:20:59 +02:00
parent 5dc745670b
commit 59f28483dd
7 changed files with 422 additions and 0 deletions
src/main/java/info/ebenoit/ebul/cmp

View file

@ -0,0 +1,34 @@
package info.ebenoit.ebul.cmp;
public class DuplicateComponentException
extends ComponentManagementException
{
private static final long serialVersionUID = -9081860105587395537L;
public DuplicateComponentException( )
{
super( );
}
public DuplicateComponentException( String message , Throwable cause )
{
super( message , cause );
}
public DuplicateComponentException( String message )
{
super( message );
}
public DuplicateComponentException( Throwable cause )
{
super( cause );
}
}