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