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

io.swagger.swaggerhub.plugin.exceptions.UploadParametersException Maven / Gradle / Ivy

Go to download

A maven plugin for downloading and uploading Swagger/OAS definitions from/to SwaggerHub as part of a build process.

There is a newer version: 1.0.4
Show newest version
package io.swagger.swaggerhub.plugin.exceptions;

import org.apache.maven.plugin.MojoExecutionException;

/**
 * Exception to be thrown when the parameters required for successful upload have not been configured correctly
 */
public class UploadParametersException extends MojoExecutionException {
    
    public UploadParametersException(String message, Exception cause) {
        super(message, cause);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy