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

org.openstack4j.api.exceptions.ContainerNotEmptyException Maven / Gradle / Ivy

package org.openstack4j.api.exceptions;

/**
 * An exception that is thrown when an Object Storage Container is attempted to be deleted that is not empty
 * 
 * @author Jeremy Unruh
 */
public class ContainerNotEmptyException extends ResponseException {

    private static final long serialVersionUID = 1L;

    public ContainerNotEmptyException(String message, int status, Throwable cause) {
        super(message, status, cause);
    }

    public ContainerNotEmptyException(String message, int status) {
        super(message, status);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy