![JAR search and dependency download from the Maven repository](/logo.png)
com.github.kongchen.swagger.docgen.GenerateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-maven-plugin Show documentation
Show all versions of swagger-maven-plugin Show documentation
A maven build plugin which helps you generate API document during build phase
package com.github.kongchen.swagger.docgen;
/**
* Created with IntelliJ IDEA.
*
* @author: chekong
* 05/29/2013
*/
public class GenerateException extends Exception {
private static final long serialVersionUID = -1641016437077276797L;
public GenerateException(String errorMessage, Throwable cause) {
super(errorMessage, cause);
}
public GenerateException(String errorMessage) {
super(errorMessage);
}
public GenerateException(Exception e) {
super(e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy