Project

General

Profile

1 203 jones
/**
2
 *  '$RCSfile$'
3
 *    Purpose: An Exception thrown when an error occurs because an
4
 *             AccessionNumber was invalid or used incorrectly
5
 *  Copyright: 2000 Regents of the University of California and the
6
 *             National Center for Ecological Analysis and Synthesis
7
 *    Authors: Matt Jones
8 349 jones
 *    Release: @release@
9 203 jones
 *
10
 *   '$Author$'
11
 *     '$Date$'
12
 * '$Revision$'
13 669 jones
 *
14
 * This program is free software; you can redistribute it and/or modify
15
 * it under the terms of the GNU General Public License as published by
16
 * the Free Software Foundation; either version 2 of the License, or
17
 * (at your option) any later version.
18
 *
19
 * This program is distributed in the hope that it will be useful,
20
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
 * GNU General Public License for more details.
23
 *
24
 * You should have received a copy of the GNU General Public License
25
 * along with this program; if not, write to the Free Software
26
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27 203 jones
 */
28
29
package edu.ucsb.nceas.metacat;
30
31
/**
32
 * Exception thrown when an error occurs because an AccessionNumber was
33
 * invalid or used incorrectly.
34
 *
35
 * Accession numbers are invalid under the following conditions:
36
 *   1) INSERT mode, and the provided accesion # doesn't contain "sep"
37
 *   2) UPDATE mode, and no accession # provided
38
 *   3) UPDATE mode, and accession # doesn't exist in xml_documents table
39
 *   4) DELETE mode, and no accession # provided
40
 *   5) DELETE mode, and accession # doesn't exist in xml_documents table
41
 */
42
public class AccessionNumberException extends Exception {
43
  /**
44
   * Create a new AccessionNumberException.
45
   *
46
   * @param message The error or warning message.
47
   */
48
  public AccessionNumberException(String message) {
49
    super(message);
50
  }
51
}