org.sklsft.generator.exception.UnhandledPersistenceModeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of generator-business-model Show documentation
Show all versions of generator-business-model Show documentation
Module Business Model du projet Generator
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);
}
}