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