01: /*-
02: * See the file LICENSE for redistribution information.
03: *
04: * Copyright (c) 2002,2008 Oracle. All rights reserved.
05: *
06: * $Id: IncompatibleClassException.java,v 1.5.2.2 2008/01/07 15:14:19 cwl Exp $
07: */
08:
09: package com.sleepycat.persist.evolve;
10:
11: /**
12: * A class has been changed incompatibly and no mutation has been configured to
13: * handle the change or a new class version number has not been assigned.
14: *
15: * @see com.sleepycat.persist.EntityStore#EntityStore EntityStore.EntityStore
16: * @see com.sleepycat.persist.model.Entity#version
17: * @see com.sleepycat.persist.model.Persistent#version
18: *
19: * @see com.sleepycat.persist.evolve Class Evolution
20: * @author Mark Hayes
21: */
22: public class IncompatibleClassException extends RuntimeException {
23:
24: public IncompatibleClassException(String msg) {
25: super(msg);
26: }
27: }
|