io.swagger.swaggerhub.plugin.exceptions.UploadParametersException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swaggerhub-maven-plugin
Show all versions of swaggerhub-maven-plugin
A maven plugin for downloading and uploading Swagger/OAS definitions from/to SwaggerHub as
part of a build process.
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