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

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

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

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

Collaboration graph
[legend]
List of all members.

Public Member Functions

 ShutdownException ()
 ShutdownException (String message)
 ShutdownException (Throwable cause)
 ShutdownException (String message, Throwable cause)

Detailed Description

Controller exception.

Author:
Mathieu Peltier
Version:
1.0

Definition at line 34 of file ShutdownException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.common.exceptions.ShutdownException.ShutdownException  ) 
 

Creates a new ShutdownException instance.

Definition at line 39 of file ShutdownException.java.

00040   {
00041   }

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

Creates a new ShutdownException instance.

Parameters:
message the error message

Definition at line 48 of file ShutdownException.java.

00049   {
00050     super(message);
00051   }

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

Creates a new ShutdownException instance.

Parameters:
cause the root cause

Definition at line 58 of file ShutdownException.java.

00059   {
00060     super(cause);
00061   }

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

Creates a new ShutdownException instance.

Parameters:
message the error message
cause the root cause

Definition at line 69 of file ShutdownException.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:40 2005 for C-JDBC by  doxygen 1.3.9.1