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
The newest version!
package com.github.kongchen.swagger.docgen;
/**
* @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);
}
}