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