1 /*-2 * See the file LICENSE for redistribution information.3 *4 * Copyright (c) 2002,2006 Oracle. All rights reserved.5 *6 * $Id: LogFileNotFoundException.java,v 1.11 2006/10/30 21:14:20 bostic Exp $7 */8 9 package com.sleepycat.je.log;10 11 /**12 * Log file doesn't exist.13 */14 public class LogFileNotFoundException extends LogException {15 16 public LogFileNotFoundException(String message) {17 super(message);18 }19 }20 21