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

org.objectweb.cjdbc.controller.loadbalancer.policies.createtable.CreateTableException Class Reference

List of all members.

Public Member Functions

 CreateTableException ()
 CreateTableException (String message)
 CreateTableException (Throwable cause)
 CreateTableException (String message, Throwable cause)

Detailed Description

A CreateTableException is thrown when a CreateTableRule policy cannot be applied in the rule.getBackends() method.

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

Definition at line 38 of file CreateTableException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.controller.loadbalancer.policies.createtable.CreateTableException.CreateTableException  ) 
 

Creates a new CreateTableException.

Definition at line 44 of file CreateTableException.java.

00045   {
00046     super();
00047   }

org.objectweb.cjdbc.controller.loadbalancer.policies.createtable.CreateTableException.CreateTableException String  message  ) 
 

Creates a new CreateTableException.

Parameters:
message the error message

Definition at line 54 of file CreateTableException.java.

00055   {
00056     super(message);
00057   }

org.objectweb.cjdbc.controller.loadbalancer.policies.createtable.CreateTableException.CreateTableException Throwable  cause  ) 
 

Creates a new CreateTableException.

Parameters:
cause the root cause

Definition at line 64 of file CreateTableException.java.

00065   {
00066     super(cause);
00067   }

org.objectweb.cjdbc.controller.loadbalancer.policies.createtable.CreateTableException.CreateTableException String  message,
Throwable  cause
 

Creates a new CreateTableException.

Parameters:
message the error message
cause the root cause

Definition at line 75 of file CreateTableException.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:57 2005 for C-JDBC by  doxygen 1.3.9.1