source: ether_statistics/service/implementation/gov/noaa/pmel/sgt/beans/DataTargetMismatchException.java @ 569

Last change on this file since 569 was 569, checked in by vmipsl, 12 years ago

Nouveau projet

File size: 1.1 KB
Line 
1/*
2 * $Id: DataTargetMismatchException.java,v 1.2 2003/08/22 23:02:34 dwd Exp $
3 *
4 * This software is provided by NOAA for full, free and open release.  It is
5 * understood by the recipient/user that NOAA assumes no liability for any
6 * errors contained in the code.  Although this software is released without
7 * conditions or restrictions in its use, it is expected that appropriate
8 * credit be given to its author and to the National Oceanic and Atmospheric
9 * Administration should the software be included by the recipient as an
10 * element in other product development.
11 */
12
13package gov.noaa.pmel.sgt.beans;
14
15/**
16 * <code>SGTData</code> does not match the target of <code>Panel</code> and
17 * <code>DataGroup</code> or <code>Legend</code> type.
18 *
19 * @author Donald Denbo
20 * @version $Revision: 1.2 $, $Date: 2003/08/22 23:02:34 $
21 * @since 3.0
22 * @stereotype bean
23 **/
24public class DataTargetMismatchException extends Exception {
25
26  public DataTargetMismatchException() {
27    super();
28  }
29
30  public DataTargetMismatchException(String message) {
31    super(message);
32  }
33}
Note: See TracBrowser for help on using the repository browser.