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

com.gooddata.warehouse.WarehouseNotFoundException Maven / Gradle / Ivy

package com.gooddata.warehouse;

import com.gooddata.GoodDataException;
import com.gooddata.GoodDataRestException;

/**
 * Warehouse instance doesn't exist.
 */
public class WarehouseNotFoundException extends GoodDataException {

    private final String warehouseUri;

    public WarehouseNotFoundException(String uri, GoodDataRestException cause) {
        super("Warehouse instance " + uri + " was not found", cause);
        this.warehouseUri = uri;
    }

    public String getWarehouseUri() {
        return warehouseUri;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy