Project

General

Profile

1
/**
2
 *  '$RCSfile$'
3
 *    Purpose: An Exception thrown when an error occurs in the metacat scheduling
4
 *    system.  Note that this is not called SchedulerException to avoid conflicts 
5
 *    with an exception in Quartz with the same name.
6
 *  Copyright: 2008 Regents of the University of California and the
7
 *             National Center for Ecological Analysis and Synthesis
8
 *    Authors: Michael Daigle
9
 *
10
 *   '$Author: daigle $'
11
 *     '$Date: 2008-07-06 21:25:34 -0700 (Sun, 06 Jul 2008) $'
12
 * '$Revision: 4080 $'
13
 *
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
 */
28

    
29
package edu.ucsb.nceas.metacat.scheduler;
30

    
31
import edu.ucsb.nceas.metacat.shared.BaseException;
32

    
33
/**
34
 * Exception thrown when an error occurs in a configuration administrative
35
 * class
36
 */
37
public class MetacatSchedulerException extends BaseException {
38

    
39
	private static final long serialVersionUID = -4139222056636239741L;
40

    
41
	public MetacatSchedulerException(String message) {
42
		super(message);
43
	}
44
	
45
	public MetacatSchedulerException(String message, BaseException deeperException) {
46
		super(message, deeperException);
47
	}
48
	
49
}
(2-2/7)