001/* 002 * The contents of this file are subject to the license and copyright detailed 003 * in the LICENSE and NOTICE files at the root of the source tree. 004 */ 005package org.duraspace.bagit; 006 007/** 008 * A profile validation exception. 009 * 010 * @author Daniel Bernstein 011 * @since Dec 14, 2016 012 */ 013public class ProfileValidationException extends Exception { 014 015 private static final long serialVersionUID = 1L; 016 017 /** 018 * Default Constructor 019 * 020 * @param message The error message 021 */ 022 public ProfileValidationException(final String message) { 023 super(message); 024 } 025}