ebul-cmp/src/main/java/info/ebenoit/ebul/cmp/ComponentShutdownException.java
Emmanuel BENOîT 8314429023 Component lifecycle exceptions
Common base class + exceptions for shutdown and destruction
2015-09-17 09:15:59 +02:00

34 lines
536 B
Java

package info.ebenoit.ebul.cmp;
public class ComponentShutdownException
extends ComponentLifecycleException
{
private static final long serialVersionUID = -6951202395528197565L;
public ComponentShutdownException( )
{
super( );
}
public ComponentShutdownException( final String message , final Throwable cause )
{
super( message , cause );
}
public ComponentShutdownException( final String message )
{
super( message );
}
public ComponentShutdownException( final Throwable cause )
{
super( cause );
}
}