32 lines
420 B
Java
32 lines
420 B
Java
package info.ebenoit.ebul.cmp;
|
|
|
|
|
|
@SuppressWarnings( "serial" )
|
|
public class ComponentException
|
|
extends RuntimeException
|
|
{
|
|
|
|
public ComponentException( )
|
|
{
|
|
super( );
|
|
}
|
|
|
|
|
|
public ComponentException( String message )
|
|
{
|
|
super( message );
|
|
}
|
|
|
|
|
|
public ComponentException( Throwable cause )
|
|
{
|
|
super( cause );
|
|
}
|
|
|
|
|
|
public ComponentException( String message , Throwable cause )
|
|
{
|
|
super( message , cause );
|
|
}
|
|
|
|
}
|