Emmanuel BENOîT
59f28483dd
* Incomplete class for component state tracking * Incomplete components registry class * Various exceptions for problems that can occur during component registration
20 lines
379 B
Java
20 lines
379 B
Java
package info.ebenoit.ebul.cmp;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public class RecursiveDependenciesException
|
|
extends ComponentManagementException
|
|
{
|
|
|
|
private static final long serialVersionUID = -7548835178440134836L;
|
|
|
|
|
|
public RecursiveDependenciesException( final List< String > componentsLeft )
|
|
{
|
|
super( "remaining components: " + String.join( ", " , componentsLeft ) );
|
|
}
|
|
|
|
}
|