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

com.gooddata.project.ProjectNotFoundException Maven / Gradle / Ivy

There is a newer version: 3.11.1+api3
Show newest version
package com.gooddata.project;

import com.gooddata.GoodDataException;

/**
 * Project of the given URI doesn't exist
 */
public class ProjectNotFoundException extends GoodDataException {

    private final String projectUri;

    public ProjectNotFoundException(String projectUri, Throwable cause) {
        super("Project " + projectUri + " was not found", cause);
        this.projectUri = projectUri;
    }

    public String getProjectUri() {
        return projectUri;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy