KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > je > log > DbChecksumException


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

8
9 package com.sleepycat.je.log;
10
11 import com.sleepycat.je.RunRecoveryException;
12 import com.sleepycat.je.dbi.EnvironmentImpl;
13
14 /**
15  * Configuration related exceptions.
16  */

17 public class DbChecksumException extends RunRecoveryException {
18
19     public DbChecksumException(EnvironmentImpl env, String JavaDoc message) {
20     super(env, message);
21     }
22
23     public DbChecksumException(EnvironmentImpl env,
24                                String JavaDoc message,
25                                Throwable JavaDoc t) {
26     super(env, message, t);
27     }
28 }
29
30
Popular Tags