34 lines
536 B
Java
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 );
|
|
}
|
|
|
|
}
|