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

com.xliic.openapi.bundler.DocumentLoadingException Maven / Gradle / Ivy

Go to download

Bundles multiple OpenAPI files (in JSON or YAML formats) using external references into one JSON file.

There is a newer version: 4.0
Show newest version
package com.xliic.openapi.bundler;

import java.net.URI;

public class DocumentLoadingException extends Exception {

    private static final long serialVersionUID = 1L;
    public final URI file;

    public DocumentLoadingException(String message, URI file) {
        super(message);
        this.file = file;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy