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

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

List of all members.

Public Member Functions

 VirtualDatabaseException ()
 VirtualDatabaseException (String message)
 VirtualDatabaseException (Throwable cause)
 VirtualDatabaseException (String message, Throwable cause)

Detailed Description

Virtual database exceptions.

Author:
Nicolas Modrzyk
Version:
1.0

Definition at line 33 of file VirtualDatabaseException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.common.exceptions.VirtualDatabaseException.VirtualDatabaseException  ) 
 

Creates a new JmxException instance.

Definition at line 39 of file VirtualDatabaseException.java.

00040   {
00041   }

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

Creates a new JmxException instance.

Parameters:
message the error message

Definition at line 48 of file VirtualDatabaseException.java.

00049   {
00050     super(message);
00051   }

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

Creates a new JmxException instance.

Parameters:
cause the root cause

Definition at line 58 of file VirtualDatabaseException.java.

00059   {
00060     super(cause.getMessage());
00061   }

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

Creates a new JmxException instance.

Parameters:
message the error message
cause the root cause

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