Component lifecycle exceptions

Common base class + exceptions for shutdown and destruction
This commit is contained in:
Emmanuel BENOîT 2015-09-17 09:15:59 +02:00
parent 99687c68eb
commit 8314429023
5 changed files with 104 additions and 2 deletions
src/main/java/info/ebenoit/ebul/cmp

View file

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