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

29 lines
634 B
Java

package org.gcube.common.storagehub.model.exceptions;
public class StorageIdNotFoundException extends StorageHubException {
/**
*
*/
private static final long serialVersionUID = 7225259271771357699L;
public StorageIdNotFoundException(String id, String storageName, Throwable cause) {
super(String.format("id %s not found in %s", id, storageName), cause);
}
public StorageIdNotFoundException(String id, String storageName) {
super(String.format("id %s not found in %s", id, storageName));
}
@Override
public String getErrorMessage() {
return null;
}
@Override
public int getStatus() {
return 404;
}
}