15 lines
222 B
Java
15 lines
222 B
Java
|
package info.ebenoit.ebul.cmp;
|
||
|
|
||
|
|
||
|
@SuppressWarnings( "serial" )
|
||
|
public class ComponentCreationException
|
||
|
extends ComponentException
|
||
|
{
|
||
|
|
||
|
public ComponentCreationException( final Throwable cause )
|
||
|
{
|
||
|
super( cause );
|
||
|
}
|
||
|
|
||
|
}
|