com.gooddata.warehouse.WarehouseS3CredentialsException Maven / Gradle / Ivy
/*
* Copyright (C) 2004-2017, GoodData(R) Corporation. All rights reserved.
* This source code is licensed under the BSD-style license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
package com.gooddata.warehouse;
import com.gooddata.GoodDataException;
/**
* Thrown when REST operation failed for S3 credentials
*/
public class WarehouseS3CredentialsException extends GoodDataException {
private final String uri;
public WarehouseS3CredentialsException(String uri, String message, Exception cause) {
super(message, cause);
this.uri = uri;
}
public WarehouseS3CredentialsException(final String uri, final String message) {
this(uri, message, null);
}
public String getUri() {
return uri;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy