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

se.wfh.libs.common.gui.exceptions.ModelBindException Maven / Gradle / Ivy

package se.wfh.libs.common.gui.exceptions;

import se.wfh.libs.common.gui.widgets.form.FormModel;
import se.wfh.libs.common.gui.widgets.form.WForm;
import se.wfh.libs.common.utils.exceptions.WfhRuntimeException;

/**
 * If anything goes wrong while binding the values from a {@link FormModel} to
 * the fields of a {@link WForm} this exception is thrown.
 * 
 * @author Frankenberger Simon
 */
public class ModelBindException extends WfhRuntimeException {
	private static final long serialVersionUID = 1L;

	public ModelBindException(final String message) {
		super(message);
	}

	public ModelBindException(final String message, final Throwable cause) {
		super(message, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy