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

org.kuali.core.db.torque.PropertyHandlingException Maven / Gradle / Ivy

package org.kuali.core.db.torque;

@SuppressWarnings("serial")
public class PropertyHandlingException extends Exception {

	public PropertyHandlingException() {
	}

	public PropertyHandlingException(String message) {
		super(message);
	}

	public PropertyHandlingException(Throwable cause) {
		super(cause);
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy