storagehub-model/src/main/java/org/gcube/common/storagehub/model/exceptions/ItemLockedException.java

41 lines
758 B
Java

package org.gcube.common.storagehub.model.exceptions;
public class ItemLockedException extends StorageHubException {
/**
*
*/
private static final long serialVersionUID = 1L;
public ItemLockedException() {
super();
// TODO Auto-generated constructor stub
}
public ItemLockedException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public ItemLockedException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public ItemLockedException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
@Override
public String getErrorMessage() {
return "item locked";
}
@Override
public int getStatus() {
return 409;
}
}