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

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

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

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

Collaboration graph
[legend]
List of all members.

Public Member Functions

 BackupException ()
 BackupException (String message)
 BackupException (Throwable cause)
 BackupException (String message, Throwable cause)

Detailed Description

Backup Exception class in case errors happen while backup or recovery is executed, but octopus is not responsible for it.

Author:
Nicolas Modrzyk

Definition at line 35 of file BackupException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.common.exceptions.BackupException.BackupException  ) 
 

Creates a new BackupException instance.

Definition at line 41 of file BackupException.java.

00042   {
00043   }

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

Creates a new BackupException instance.

Parameters:
message the error message

Definition at line 50 of file BackupException.java.

00051   {
00052     super(message);
00053   }

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

Creates a new BackupException instance.

Parameters:
cause the root cause

Definition at line 60 of file BackupException.java.

00061   {
00062     this.cause = cause;
00063   }

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

Creates a new BackupException instance.

Parameters:
message the error message
cause the root cause

Definition at line 71 of file BackupException.java.

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


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