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

org.objectweb.cjdbc.common.sql.NotImplementedException Class Reference

List of all members.

Public Member Functions

 NotImplementedException (String reason, String sqlState, int vendorCode)
 NotImplementedException (String reason, String sqlState)
 NotImplementedException (String callingMethod)
 NotImplementedException ()

Detailed Description

This exception is thrown for all non implemented features in the C-JDBC driver.

Author:
Emmanuel Cecchet
Version:
1.0

Definition at line 36 of file NotImplementedException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.common.sql.NotImplementedException.NotImplementedException String  reason,
String  sqlState,
int  vendorCode
 

Creates a new NotImplementedException instance.

Parameters:
reason the exception cause
sqlState the SQL state
vendorCode the vendor code

Definition at line 45 of file NotImplementedException.java.

00049   {
00050     super(reason, sqlState, vendorCode);
00051   }

org.objectweb.cjdbc.common.sql.NotImplementedException.NotImplementedException String  reason,
String  sqlState
 

Creates a new NotImplementedException instance.

Parameters:
reason the exception cause
sqlState the SQL state

Definition at line 59 of file NotImplementedException.java.

00060   {
00061     super(reason, sqlState);
00062   }

org.objectweb.cjdbc.common.sql.NotImplementedException.NotImplementedException String  callingMethod  ) 
 

Creates a new NotImplementedException instance.

Parameters:
callingMethod the calling method that failed

Definition at line 69 of file NotImplementedException.java.

00070   {
00071     super(callingMethod + " not implemented");
00072   }

org.objectweb.cjdbc.common.sql.NotImplementedException.NotImplementedException  ) 
 

Creates a new NotImplementedException instance.

Definition at line 77 of file NotImplementedException.java.

00078   {
00079     super("Feature not implemented");
00080   }


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