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

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

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

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

Collaboration graph
[legend]
List of all members.

Public Member Functions

 DataCollectorException ()
 DataCollectorException (String message)
 DataCollectorException (Throwable cause)
 DataCollectorException (String message, Throwable cause)

Detailed Description

DataCollector exceptions

Author:
Nicolas Modrzyk
Version:
1.0

Definition at line 33 of file DataCollectorException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.common.exceptions.DataCollectorException.DataCollectorException  ) 
 

Creates a new DataCollector instance.

Definition at line 39 of file DataCollectorException.java.

00040   {
00041   }

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

Creates a new DataCollector instance.

Parameters:
message the error message

Definition at line 48 of file DataCollectorException.java.

00049   {
00050     super(message);
00051   }

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

Creates a new DataCollector instance.

Parameters:
cause the root cause

Definition at line 58 of file DataCollectorException.java.

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

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

Creates a new DataCollector instance.

Parameters:
message the error message
cause the root cause

Definition at line 69 of file DataCollectorException.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