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

org.objectweb.cjdbc.common.exceptions.ControllerException Class Reference

Inheritance diagram for org.objectweb.cjdbc.common.exceptions.ControllerException:

Inheritance graph
[legend]
Collaboration diagram for org.objectweb.cjdbc.common.exceptions.ControllerException:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 ControllerException ()
 ControllerException (String message)
 ControllerException (Throwable cause)
 ControllerException (String message, Throwable cause)

Detailed Description

Controller exception.

Author:
Mathieu Peltier
Version:
1.0

Definition at line 34 of file ControllerException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.common.exceptions.ControllerException.ControllerException  ) 
 

Creates a new ControllerException instance.

Definition at line 39 of file ControllerException.java.

00040   {
00041   }

org.objectweb.cjdbc.common.exceptions.ControllerException.ControllerException String  message  ) 
 

Creates a new ControllerException instance.

Parameters:
message the error message

Definition at line 48 of file ControllerException.java.

00049   {
00050     super(message);
00051   }

org.objectweb.cjdbc.common.exceptions.ControllerException.ControllerException Throwable  cause  ) 
 

Creates a new ControllerException instance.

Parameters:
cause the root cause

Definition at line 58 of file ControllerException.java.

00059   {
00060     super(cause);
00061   }

org.objectweb.cjdbc.common.exceptions.ControllerException.ControllerException String  message,
Throwable  cause
 

Creates a new ControllerException instance.

Parameters:
message the error message
cause the root cause

Definition at line 69 of file ControllerException.java.

00070   {
00071     super(message, cause);
00072   }


The documentation for this class was generated from the following file:
Generated on Mon Apr 11 22:01:39 2005 for C-JDBC by  doxygen 1.3.9.1