001/**
002 * Copyright 2015 DuraSpace, Inc.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.fcrepo.kernel.api.exception;
017
018/**
019 * Indicates that RDF was presented for persistence to the repository, but could not be persisted for some reportable
020 * reason.
021 *
022 * @author ajs6f
023 * @author whikloj
024 * @since Oct 24, 2013
025 */
026public class MalformedRdfException extends RepositoryRuntimeException {
027
028    private static final long serialVersionUID = 1L;
029
030    /**
031     * Ordinary constructor.
032     *
033     * @param msg the message
034     */
035    public MalformedRdfException(final String msg) {
036        super(msg);
037    }
038
039
040    /**
041     * Ordinary constructor.
042     *
043     * @param rootCause the root cause
044     */
045    public MalformedRdfException(final Throwable rootCause) {
046        super(rootCause);
047    }
048
049    /**
050     * Ordinary constructor.
051     *
052     * @param msg the message
053     * @param rootCause the root cause
054     */
055    public MalformedRdfException(final String msg, final Throwable rootCause) {
056        super(msg, rootCause);
057    }
058
059}