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

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

There is a newer version: 3.1.8
Show newest version
package com.github.kongchen.swagger.docgen;

/**
 * Created with IntelliJ IDEA.
 *
 * @author: chekong
 * 05/29/2013
 */
public class GenerateException extends Throwable {
    public GenerateException(String errorMessage) {
        super(errorMessage);
    }

    public GenerateException(Exception e) {
        super(e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy