ebul-cmp/src/main/java/info/ebenoit/ebul/cmp/AmbiguousComponentException.java
Emmanuel BENOîT 59f28483dd Components registry - Component registration
* Incomplete class for component state tracking
* Incomplete components registry class
* Various exceptions for problems that can occur during component
registration
2015-09-15 11:21:26 +02:00

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( ) );
}
}