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

jodd.bean.exception.PropertyNotFoundBeanException Maven / Gradle / Ivy

The newest version!
package jodd.bean.exception;

import jodd.bean.BeanException;
import jodd.bean.BeanProperty;

public class PropertyNotFoundBeanException extends BeanException {
	public PropertyNotFoundBeanException(String message, BeanProperty bp) {
		super(message + " Property: " + bp.toString());
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy