resource-registry-api/src/main/java/org/gcube/informationsystem/resourceregistry/api/exceptions/entities/EntityNotFoundException.java

27 lines
630 B
Java

package org.gcube.informationsystem.resourceregistry.api.exceptions.entities;
import org.gcube.informationsystem.resourceregistry.api.exceptions.NotFoundException;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public class EntityNotFoundException extends NotFoundException {
/**
* Generated Serial Version UID
*/
private static final long serialVersionUID = -1687373446724146351L;
public EntityNotFoundException(String message) {
super(message);
}
public EntityNotFoundException(Throwable cause) {
super(cause);
}
public EntityNotFoundException(String message, Throwable cause) {
super(message, cause);
}
}