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

org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingException Class Reference

List of all members.

Public Member Functions

 ErrorCheckingException ()
 ErrorCheckingException (String message)
 ErrorCheckingException (Throwable cause)
 ErrorCheckingException (String message, Throwable cause)

Detailed Description

An ErrorCheckingException is thrown when an ErrorCheckingPolicy policy cannot be applied in the getBackends() method.

Author:
Emmanuel Cecchet
Version:
1.0
See also:
org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.getBackends(java.util.ArrayList)

Definition at line 38 of file ErrorCheckingException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingException.ErrorCheckingException  ) 
 

Creates a new ErrorCheckingException instance.

Definition at line 44 of file ErrorCheckingException.java.

00045   {
00046     super();
00047   }

org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingException.ErrorCheckingException String  message  ) 
 

Creates a new ErrorCheckingException instance.

Parameters:
message the error message

Definition at line 54 of file ErrorCheckingException.java.

00055   {
00056     super(message);
00057   }

org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingException.ErrorCheckingException Throwable  cause  ) 
 

Creates a new ErrorCheckingException instance.

Parameters:
cause the root cause

Definition at line 64 of file ErrorCheckingException.java.

00065   {
00066     super(cause);
00067   }

org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingException.ErrorCheckingException String  message,
Throwable  cause
 

Creates a new ErrorCheckingException instance.

Parameters:
message the error message
cause the root cause

Definition at line 75 of file ErrorCheckingException.java.

00076   {
00077     super(message, cause);
00078   }


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