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

com.github.kongchen.swagger.docgen.GenerateException Maven / Gradle / Ivy

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);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy