KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > util > externalprocess > ProcessException


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

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 JavaDoc {
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 JavaDoc message) {
32         super(message);
33     }
34
35 }
36
Popular Tags