Components registry - Start, stop, restart
This commit is contained in:
parent
d083be2676
commit
53128c5e77
5 changed files with 283 additions and 20 deletions
src/main/java/info/ebenoit/ebul/cmp
|
@ -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 );
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue