• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/java/src/com/sleepycat/persist/
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;
10
11import com.sleepycat.db.DatabaseException;
12
13/**
14 * Thrown by the {@link EntityStore} constructor when the {@link
15 * StoreConfig#setExclusiveCreate ExclusiveCreate} configuration parameter is
16 * true and the store's internal catalog database already exists.
17 *
18 * @author Mark Hayes
19 */
20public class StoreExistsException extends DatabaseException {
21
22    private static final long serialVersionUID = 1;
23
24    public StoreExistsException(String message) {
25        super(message);
26    }
27}
28