
com.cmeza.sdgenerator.util.SDMojoException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-generator Show documentation
Show all versions of spring-data-generator Show documentation
Spring Data Generator for JPA repositories and managers.
The newest version!
package com.cmeza.sdgenerator.util;
import org.apache.maven.plugin.MojoExecutionException;
/**
* Created by carlos on 23/04/17.
*/
public class SDMojoException extends MojoExecutionException {
public SDMojoException() {
super("");
SDLogger.printGeneratedTables(true);
}
public SDMojoException(String message) {
super(message);
SDLogger.printGeneratedTables(true);
}
public SDMojoException(String message, Throwable cause) {
super(message, cause);
SDLogger.printGeneratedTables(true);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy