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

org.duracloud.account.compute.error.DuracloudInstanceNotAvailableException Maven / Gradle / Ivy

/*
 * The contents of this file are subject to the license and copyright
 * detailed in the LICENSE and NOTICE files at the root of the source
 * tree and available online at
 *
 *     http://duracloud.org/license/
 */
package org.duracloud.account.compute.error;

import org.duracloud.common.error.DuraCloudCheckedException;

/**
 * @author "Daniel Bernstein ([email protected])"
 */
public class DuracloudInstanceNotAvailableException extends DuraCloudCheckedException {

    private static final long serialVersionUID = 1L;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy