1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 2002,2008 Oracle.  All rights reserved.
5 *
6 * $Id: DeletedClassException.java,v 1.1 2008/02/07 17:12:27 mark Exp $
7 */
8
9package com.sleepycat.persist.evolve;
10
11
12/**
13 * While reading from an index, an instance of a deleted class version was
14 * encountered.
15 *
16 * @see com.sleepycat.persist.evolve Class Evolution
17 * @author Mark Hayes
18 */
19public class DeletedClassException extends RuntimeException {
20
21    public DeletedClassException(String msg) {
22        super(msg);
23    }
24}
25