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:
parent
5dc745670b
commit
59f28483dd
7 changed files with 422 additions and 0 deletions
src/main/java/info/ebenoit/ebul/cmp
|
@ -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 );
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue