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