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

io.swagger.swaggerhub.plugin.exceptions.DefinitionParsingException 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;

/**
 * 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