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 * Certain mixin types are managed by the repository only. 010 * 011 * @author whikloj 012 * @since 2015-06-02 013 */ 014public class ServerManagedTypeException extends ConstraintViolationException { 015 016 private static final long serialVersionUID = 1L; 017 018 /** 019 * @param msg the message 020 */ 021 public ServerManagedTypeException(final String msg) { 022 super(msg); 023 } 024 025}