01: /*-
02: * See the file LICENSE for redistribution information.
03: *
04: * Copyright (c) 2002,2008 Oracle. All rights reserved.
05: *
06: * $Id: DeletedClassException.java,v 1.7.2.2 2008/01/07 15:14:19 cwl Exp $
07: */
08:
09: package com.sleepycat.persist.evolve;
10:
11: /**
12: * While reading from an index, an instance of a deleted class version was
13: * encountered.
14: *
15: * @see com.sleepycat.persist.evolve Class Evolution
16: * @author Mark Hayes
17: */
18: public class DeletedClassException extends RuntimeException {
19:
20: public DeletedClassException(String msg) {
21: super(msg);
22: }
23: }
|