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

org.javalite.activeweb.OpenAPIException Maven / Gradle / Ivy

Go to download

This plugin will generate Open API - compliant document from sources of an ActiveWeb app.

There is a newer version: 3.3
Show newest version
package org.javalite.activeweb;

public class OpenAPIException extends RuntimeException{
    public OpenAPIException(Throwable cause) {
        super(cause);
    }

    public OpenAPIException(String message) {
        super(message);
    }

    public OpenAPIException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy