* Incomplete class for component state tracking * Incomplete components registry class * Various exceptions for problems that can occur during component registration
15 lines
368 B
Java
15 lines
368 B
Java
package info.ebenoit.ebul.cmp;
|
|
|
|
|
|
public class AmbiguousComponentException
|
|
extends ComponentManagementException
|
|
{
|
|
private static final long serialVersionUID = 7687715816342008691L;
|
|
|
|
|
|
public AmbiguousComponentException( Class< ? > requested , int matches )
|
|
{
|
|
super( Integer.toString( matches ) + " components match type " + requested.getCanonicalName( ) );
|
|
}
|
|
|
|
}
|