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

com.dooapp.gaedo.finders.root.MethodConstructedOnMissingField Maven / Gradle / Ivy

package com.dooapp.gaedo.finders.root;

import java.lang.reflect.Method;

public class MethodConstructedOnMissingField extends CantMatchMethodToCodeException {

	public MethodConstructedOnMissingField(Method method, String realFieldName, NoSuchFieldInHierarchyException e) {
		super("method "+method.toString()+" was apparently defined in informer "+method.getDeclaringClass().getName()+" " +
				"for field "+realFieldName+" which doesn't seems to exist", e);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy