Source code: com/cybertivity/powerjournal/database/DBException.java
1 package com.cybertivity.powerjournal.database;
2
3 /**
4 * Title: PowerJournal
5 * Description: $Id: DBException.java,v 1.1 2001/12/02 01:43:23 arrowood Exp $
6 * Copyright: Copyright (c) 2001
7 * Company: <A HREF="http://www.cybertivity.com">Cybertivity</A>
8 *
9 * @author Administrator
10 * @created December 1, 2001
11 * @@author <A HREF="mailto:chris.arrowood@@cybertivity.com">Chris Arrowood</A>
12 * @@version 1.0
13 */
14
15 public class DBException extends Exception {
16
17 public DBException() {
18 super();
19 }
20
21
22 public DBException(String msg) {
23 super(msg);
24 }
25 }