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

org.sklsft.generator.exception.UnhandledPersistenceModeException Maven / Gradle / Ivy

There is a newer version: 2.0.0-M2
Show newest version
package org.sklsft.generator.exception;

/**
 * Raised when an error occurs when parsing project configuration files
 * @author Mounir Regragui
 *
 */
public class UnhandledPersistenceModeException extends RuntimeException {
	
	/**
	 * 
	 */
	private static final long serialVersionUID = -3909954112331400976L;

	public UnhandledPersistenceModeException(String message) {
		super(message);
	}
	
	public UnhandledPersistenceModeException(String message, Throwable t) {
		super(message, t);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy