source: trunk/gsdl3/packages/javagdbm/java/au/com/pharos/gdbm/GdbmException.java@ 10737

Last change on this file since 10737 was 10737, checked in by kjdon, 19 years ago

Java Wrapper for GDBM, from Martin Pool. Original website gone, so added it all in here. I have modified the Makefiles to work in greenstone, and on macs, and added windows makefiles

  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1/*
2 * module: pip/java/gdbm -- A Java interface to the GDBM library
3 * class: GdbmException -- An exception originating in the GDBM library
4 * Copyright (C) 1997 Pharos IP Pty Ltd
5 * $Id: GdbmException.java 10737 2005-10-19 03:06:40Z kjdon $
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22package au.com.pharos.gdbm;
23
24import java.io.IOException;
25
26/** An exception originating in the GDBM library.
27 *
28 * @author Martin Pool
29 * @version $Revision: 10737 $
30 * @see au.com.pharos.gdbm.GdbmFile
31 */
32
33public class GdbmException extends IOException
34{
35 // TODO: Perhaps provide more information about which particular
36 // exception caused the problem?
37 /** Constructs a GdbmException with the specified reason.
38 **/
39 public GdbmException(String reason)
40 {
41 super(reason);
42 }
43}
44
45
Note: See TracBrowser for help on using the repository browser.