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

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

Nouveau projet

File size: 922 bytes
Line 
1/*
2 * $Id: ChildNotFoundException.java,v 1.1.1.1 1999/12/21 19:23:55 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;
14
15/**
16 * Child was not found during operation.
17 *
18 * @author Donald Denbo
19 * @version $Revision: 1.1.1.1 $, $Date: 1999/12/21 19:23:55 $
20 */
21public class ChildNotFoundException extends SGException {
22  public ChildNotFoundException() {
23    super();
24}
25  public ChildNotFoundException(String s) {
26    super(s);
27  }
28}
Note: See TracBrowser for help on using the repository browser.