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

ParameterNotFoundException Class Reference

Inheritance diagram for ParameterNotFoundException:

Inheritance graph
[legend]
Collaboration diagram for ParameterNotFoundException:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 ParameterNotFoundException (String message, String gen, String name)
 ParameterNotFoundException (String message, String gen, String name, int index)
void printStackTrace (PrintWriter s)
void printStackTrace (PrintStream s)
String getMessage ()
Exception getOriginalException ()

Protected Attributes

String data = ""
Exception originalException

Constructor & Destructor Documentation

ParameterNotFoundException String  message,
String  gen,
String  name
 

Constructor when no underlying exception thrown.

Parameters:
message 

Definition at line 18 of file ParameterNotFoundException.java.

00018                                                                               {
00019     super(message,gen+" "+name);
00020     } 

ParameterNotFoundException String  message,
String  gen,
String  name,
int  index
 

Constructor when no underlying exception thrown.

Parameters:
message 

Definition at line 26 of file ParameterNotFoundException.java.

00026                                                                                         {
00027     super(message,gen+" "+name+" at index "+index);
00028     } 


Member Function Documentation

String getMessage  )  [inherited]
 

Overrides super to show the sql error details (if relevant), and error data (if supplied)

Returns:
error message

Reimplemented in JetWebDBException, and JobRequestException.

Definition at line 80 of file JetWebException.java.

References JetWebException.data, and JetWebException.originalException.

00080                               {
00081     
00082     StringBuffer b = new StringBuffer();
00083     b.append(this.getClass().getName());
00084     b.append("\n");
00085         b.append(super.getMessage()); 
00086 
00087     if (originalException!=null){
00088         b.append("\n Original Exception\n");
00089         b.append(originalException.getClass().getName());
00090     }
00091 
00092     //printStackTrace(System.out);
00093 
00094         if (!data.equals("")){
00095         b.append("\n:DATA:");
00096         b.append(data);
00097     }
00098     
00099     return b.toString();
00100     
00101     }

Exception getOriginalException  )  [inherited]
 

gets the original exception this exception wraps

Returns:
exception

Definition at line 107 of file JetWebException.java.

Referenced by JobRequestException.getMessage(), and JetWebDBException.getMessage().

00107                                            {
00108     return originalException;
00109     }

void printStackTrace PrintStream  s  )  [inherited]
 

This overrides super to print the original exception stack trace, if there is one. The message and stack trace can be obtained from it.

Parameters:
PrintStream 

Definition at line 67 of file JetWebException.java.

References JetWebException.originalException.

00067                                               {
00068     if (originalException!=null){
00069         originalException.printStackTrace(s);
00070     } else {
00071         super.printStackTrace(s);
00072     }
00073     }

void printStackTrace PrintWriter  s  )  [inherited]
 

This overrides super to print the original exception stack trace, if there is one. The message and stack trace can be obtained from it.

Parameters:
PrintWriter 

Definition at line 54 of file JetWebException.java.

References JetWebException.originalException.

00054                                               {
00055     if (originalException!=null){
00056         originalException.printStackTrace(s);
00057     } else {
00058         super.printStackTrace(s);
00059     }
00060     }


Member Data Documentation

String data = "" [protected, inherited]
 

Definition at line 16 of file JetWebException.java.

Referenced by JetWebException.getMessage().

Exception originalException [protected, inherited]
 

Definition at line 17 of file JetWebException.java.

Referenced by JetWebException.getMessage(), and JetWebException.printStackTrace().


The documentation for this class was generated from the following file:

Generated Wed Jan 17 09:14:27 GMT 2007