KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > persist > evolve > DeletedClassException


1 /*-
2  * See the file LICENSE for redistribution information.
3  *
4  * Copyright (c) 2002,2006 Oracle. All rights reserved.
5  *
6  * $Id: DeletedClassException.java,v 1.7 2006/10/30 21:14:31 bostic Exp $
7  */

8
9 package 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  */

19 public class DeletedClassException extends RuntimeException JavaDoc {
20
21     public DeletedClassException(String JavaDoc msg) {
22         super(msg);
23     }
24 }
25
Popular Tags