source: trunk/greenstone3-extensions/gsdl-as/src/org/greenstone/gsdlas/database/DatabaseException.java@ 8717

Last change on this file since 8717 was 8717, checked in by schweer, 19 years ago

started to rework control flow, user authentication

  • Property svn:keywords set to Author Date Id Revision
File size: 587 bytes
Line 
1/*
2 * Created on Dec 1, 2004
3 * Copyright (C) Andrea Schweer, 2004
4 *
5 * This file is part of the Greenstone Alerting Service.
6 * Refer to the COPYING file in the base directory of this package
7 * for licensing information.
8 */
9package org.greenstone.gsdlas.database;
10
11/**
12 * @author andrea
13 *
14 * TODO To change the template for this generated type comment go to
15 * Window - Preferences - Java - Code Style - Code Templates
16 */
17public class DatabaseException extends Exception {
18
19 public DatabaseException(String message, Throwable cause) {
20 super(message, cause);
21 }
22}
Note: See TracBrowser for help on using the repository browser.