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

com.gooddata.http.client.GoodDataAuthException Maven / Gradle / Ivy

There is a newer version: 1.0.0+java7.fix1
Show newest version
/*
 * Copyright (C) 2007-2015, GoodData(R) Corporation. All rights reserved.
 * This program is made available under the terms of the BSD License.
 */
package com.gooddata.http.client;

/**
 * GoodData authentication exception.
 */
public class GoodDataAuthException extends RuntimeException {

    public GoodDataAuthException() { }

    public GoodDataAuthException(String message) {
        super(message);
    }

    public GoodDataAuthException(String message, Throwable cause) {
        super(message, cause);
    }

    public GoodDataAuthException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy