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

JetWebFitException.java

Go to the documentation of this file.
00001 package cedar.jetweb.model.fit;
00002 
00003 import cedar.jetweb.JetWebException;
00004 
00005 import java.io.PrintStream;
00006 import java.io.PrintWriter;
00015 public class JetWebFitException extends JetWebException {
00016 
00017     //private String data = "";
00018     //private Exception originalException;
00024     public JetWebFitException(Exception originalException){
00025     super(originalException);
00026     } 
00033     public JetWebFitException(String message, String data){
00034     super(message,data);
00035     } 
00036 
00037 }
00038 
00039 
00040 
00041 
00042 
00043 
00044 
00045 
00046 
00047 
00048 
00049 
00050 

Generated Wed Jan 17 09:14:27 GMT 2007