01: /*
02:
03: This software is OSI Certified Open Source Software.
04: OSI Certified is a certification mark of the Open Source Initiative.
05:
06: The license (Mozilla version 1.0) can be read at the MMBase site.
07: See http://www.MMBase.org/license
08:
09: */
10: package org.mmbase.util.externalprocess;
11:
12: /** This excpetion is thrown when an external process failed.
13: *
14: * @author Nico Klasens (Finalist IT Group)
15: * @version $Id: ProcessException.java,v 1.3 2003/05/12 13:10:47 kees Exp $
16: * @since MMBase-1.6
17: */
18: public class ProcessException extends Exception {
19:
20: /**
21: * Constructor for ProcessException.
22: */
23: public ProcessException() {
24: super ();
25: }
26:
27: /**
28: * Constructor for ProcessException.
29: * @param message
30: */
31: public ProcessException(String message) {
32: super(message);
33: }
34:
35: }
|