1 /*-2 * See the file LICENSE for redistribution information.3 *4 * Copyright (c) 2002,2006 Oracle. All rights reserved.5 *6 * $Id: InternalException.java,v 1.14 2006/10/30 21:14:29 bostic Exp $7 */8 9 package com.sleepycat.je.utilint;10 11 import com.sleepycat.je.DatabaseException;12 13 /**14 * Some internal inconsistency exception.15 */16 public class InternalException extends DatabaseException {17 18 public InternalException() {19 super();20 }21 22 public InternalException(String message) {23 super(message);24 }25 }26