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