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

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

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

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

Collaboration graph
[legend]
List of all members.

Public Member Functions

 OctopusException ()
 OctopusException (String message)
 OctopusException (Throwable cause)
 OctopusException (String message, Throwable cause)

Detailed Description

Octopus Exception class in case errors happen while octopus is working

Author:
Nicolas Modrzyk

Definition at line 34 of file OctopusException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.common.exceptions.OctopusException.OctopusException  ) 
 

Creates a new OctopusException instance.

Definition at line 40 of file OctopusException.java.

00041   {
00042   }

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

Creates a new OctopusException instance.

Parameters:
message the error message

Definition at line 49 of file OctopusException.java.

00050   {
00051     super(message);
00052   }

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

Creates a new OctopusException instance.

Parameters:
cause the root cause

Definition at line 59 of file OctopusException.java.

00060   {
00061     this.cause = cause;
00062   }

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

Creates a new OctopusException instance.

Parameters:
message the error message
cause the root cause

Definition at line 70 of file OctopusException.java.

00071   {
00072     super(message);
00073     this.cause = cause;
00074   }


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