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

de.jwic.controls.pojoedit.PojoEditorException Maven / Gradle / Ivy

There is a newer version: 5.3.43
Show newest version
/**
 * 
 */
package de.jwic.controls.pojoedit;

/**
 * Since the editor works a lot with reflection, it uses this generic PojoEditorException to notify
 * users that something went wront...
 * 
 * @author lippisch
 */
public class PojoEditorException extends Exception {

	/**
	 * 
	 */
	public PojoEditorException() {
		super();
	}

	/**
	 * @param message
	 * @param cause
	 */
	public PojoEditorException(String message, Throwable cause) {
		super(message, cause);
	}

	/**
	 * @param message
	 */
	public PojoEditorException(String message) {
		super(message);
	}

	/**
	 * @param cause
	 */
	public PojoEditorException(Throwable cause) {
		super(cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy