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);
}
}