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 * Indicates that the wrong format of the Memento-Datetime. 010 * 011 * @author lsitu 012 * @since 2018-03-12 013 */ 014public class MementoDatetimeFormatException extends RepositoryRuntimeException { 015 016 private static final long serialVersionUID = 1L; 017 018 /** 019 * Ordinary constructor. 020 * 021 * @param msg the message 022 * @param rootCause the root cause 023 */ 024 public MementoDatetimeFormatException(final String msg, final Throwable rootCause) { 025 super(msg,rootCause); 026 } 027 028}