/Users/lyon/j4p/src/javagroup/process/ProcessCreationException.java

1    package javagroup.process; 
2     
3    /** 
4     * Class to represent an exception related to creating a process. Possible 
5     * causes are: no appropritate method to invoke (eg static main(String[]), 
6     * or class not found. 
7     * 
8     * @author Luke Gorrie 
9     */ 
10   public class ProcessCreationException extends Exception { 
11    
12       public ProcessCreationException() { 
13           super(); 
14       } 
15    
16       public ProcessCreationException(String message) { 
17           super(message); 
18       } 
19    
20   } 
21    
22