All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dooapp.gaedo.blueprints.IncompatibleServiceException Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
package com.dooapp.gaedo.blueprints;

import com.dooapp.gaedo.blueprints.indexable.IndexableGraphBackedFinderService;
import com.dooapp.gaedo.finders.FinderCrudService;

/**
 * Given service is incompatible with general contract of {@link IndexableGraphBackedFinderService}
 * @author ndx
 *
 */
public class IncompatibleServiceException extends BluePrintsCrudServiceException {

	public IncompatibleServiceException(FinderCrudService service, Class valueClass) {
		super("service "+service.getClass().getName()+" is associated with values of type "+valueClass.getCanonicalName()+" but IS NOT compatible with requirements of "+IndexableGraphBackedFinderService.class.getName());
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy