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

com.gooddata.model.ModelException Maven / Gradle / Ivy

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

import com.gooddata.GoodDataException;

/**
 * Represents error in ModelService
 */
public class ModelException extends GoodDataException {
    public ModelException(String message) {
        super(message);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy