Main Page | Packages | Class Hierarchy | Class List | Directories | File List | Class Members | Related Pages

ParameterNotFoundException.java

Go to the documentation of this file.
00001 package cedar.jetweb.generator;
00002 
00003 import cedar.jetweb.JetWebException;
00004 
00005 import java.io.PrintStream;
00006 import java.io.PrintWriter;
00007 import java.sql.SQLException;
00011 public class ParameterNotFoundException extends JetWebException {
00012 
00018     public ParameterNotFoundException(String message, String gen, String name){
00019     super(message,gen+" "+name);
00020     } 
00026     public ParameterNotFoundException(String message, String gen, String name,int index){
00027     super(message,gen+" "+name+" at index "+index);
00028     } 
00029 
00030 }
00031 
00032 
00033 
00034 
00035 
00036 
00037 
00038 
00039 
00040 
00041 
00042 
00043 

Generated Wed Jan 17 09:14:27 GMT 2007