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

com.gooddata.dataset.DatasetNotFoundException Maven / Gradle / Ivy

There is a newer version: 3.12.0+api3
Show newest version
/*
 * Copyright (C) 2007-2014, GoodData(R) Corporation. All rights reserved.
 */
package com.gooddata.dataset;

import com.gooddata.GoodDataException;

/**
 * Represents error when dataset of the given id was not found
 */
public class DatasetNotFoundException extends GoodDataException {

    public DatasetNotFoundException(String dataset, Throwable cause) {
        super("Dataset " + dataset + " was not found", cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy