21 lines
379 B
Java
21 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 ) );
|
||
|
}
|
||
|
|
||
|
}
|