• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/java/src/com/sleepycat/persist/evolve/
1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 2002-2009 Oracle.  All rights reserved.
5 *
6 * $Id$
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    private static final long serialVersionUID = 2103957824L;
25
26    public IncompatibleClassException(String message) {
27        super(message);
28    }
29}
30