io.swagger.swaggerhub.plugin.exceptions.DefinitionParsingException 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;
/**
* Thrown to indicate an error has occurred when parsing a given definition. This exception will prevent any further parsing of the definition.
*/
public class DefinitionParsingException extends Exception {
/**
* {@inheritDoc}
*/
public DefinitionParsingException() {
}
/**
* {@inheritDoc}
*/
public DefinitionParsingException(String message) {
super(message);
}
/**
* {@inheritDoc}
*/
public DefinitionParsingException(String message, Throwable cause) {
super(message, cause);
}
/**
* {@inheritDoc}
*/
public DefinitionParsingException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy