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 * Exception when trying to use an unsupported media type.
010 * @author whikloj
011 * @since 6.0.0
012 */
013public class UnsupportedMediaTypeException extends RepositoryRuntimeException {
014
015    private static final long serialVersionUID = 1L;
016
017    /**
018     * Default constructor.
019     * @param msg the exception message.
020     */
021    public UnsupportedMediaTypeException(final String msg) {
022        super(msg);
023    }
024}