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

org.jsoftware.restclient.PathNotFoundException Maven / Gradle / Ivy

The newest version!
package org.jsoftware.restclient;

import org.jetbrains.annotations.NotNull;

import javax.xml.namespace.QName;
import java.io.IOException;

/**
 * Requested path not found.
 * @author szalik
 * @see RestClientResponse#json(String)
 * @see RestClientResponse#xPath(String)
 * @see RestClientResponse#xPath(String, QName)
 */
public class PathNotFoundException extends IOException {
    private final String path;

    public PathNotFoundException(String path, Throwable init) {
        this.path = path;
        if (init != null) {
            this.initCause(init);
        }
    }

    @NotNull
    public String getPath() {
        return path;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy