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 * A transaction was not found in the transaction registry
010 *
011 * @author awoods
012 */
013public class SessionMissingException extends RepositoryRuntimeException {
014
015    private static final long serialVersionUID = 2139084821001303830L;
016
017    /**
018     *
019     * @param s the exception message
020     */
021    public SessionMissingException(final String s) {
022        super(s);
023    }
024}