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 thrown if a Relaxable SMT is altered.
010 * @author whikloj
011 * @since 6.0.0
012 */
013public class RelaxableServerManagedPropertyException extends ServerManagedPropertyException {
014
015    /**
016     *
017     * @param msg the message
018     */
019    public RelaxableServerManagedPropertyException(final String msg) {
020        super(msg);
021    }
022}