1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 2002,2008 Oracle.  All rights reserved.
5 *
6 * $Id: IncompatibleClassException.java,v 1.1 2008/02/07 17:12:27 mark Exp $
7 */
8
9package 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 */
22public class IncompatibleClassException extends RuntimeException {
23
24    public IncompatibleClassException(String msg) {
25        super(msg);
26    }
27}
28