001/*
002 * The contents of this file are subject to the license and copyright
003 * detailed in the LICENSE and NOTICE files at the root of the source
004 * tree.
005 */
006package org.fcrepo.kernel.api.exception;
007
008/**
009 * Represents the condition that an attempt has been made to persist RDF to the repository as properties of a
010 * particular resource, but the subject of a triple in that RDF is not the resource in question.
011 *
012 * @author ajs6f
013 */
014public class IncorrectTripleSubjectException extends ConstraintViolationException {
015
016    private static final long serialVersionUID = 1L;
017
018    /**
019     * @param message the error message
020     */
021    public IncorrectTripleSubjectException(final String message) {
022        super(message);
023    }
024
025}