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

31 lines
632 B
Java

package org.gcube.common.storagehub.model.exceptions;
public class IdNotFoundException extends StorageHubException {
/**
*
*/
private static final long serialVersionUID = 1L;
public IdNotFoundException(String id, Throwable cause) {
super(String.format("Item with id %s not found", id), cause);
// TODO Auto-generated constructor stub
}
public IdNotFoundException(String id) {
super(String.format("Item with id %s not found", id));
// TODO Auto-generated constructor stub
}
@Override
public String getErrorMessage() {
return "item not found";
}
@Override
public int getStatus() {
return 404;
}
}