Component lifecycle exceptions
Common base class + exceptions for shutdown and destruction
This commit is contained in:
parent
99687c68eb
commit
8314429023
5 changed files with 104 additions and 2 deletions
src/main/java/info/ebenoit/ebul/cmp
|
@ -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 );
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue