Components registry - Start, stop, restart

This commit is contained in:
Emmanuel BENOîT 2015-09-15 15:41:05 +02:00
parent d083be2676
commit 53128c5e77
5 changed files with 283 additions and 20 deletions
src/main/java/info/ebenoit/ebul/cmp

View file

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