01: /*-
02: * See the file LICENSE for redistribution information.
03: *
04: * Copyright (c) 2002,2008 Oracle. All rights reserved.
05: *
06: * $Id: LogFileNotFoundException.java,v 1.11.2.2 2008/01/07 15:14:13 cwl Exp $
07: */
08:
09: 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: }
|