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

org.objectweb.cjdbc.controller.authentication.AuthenticationManagerException Class Reference

List of all members.

Public Member Functions

 AuthenticationManagerException ()
 AuthenticationManagerException (String message)
 AuthenticationManagerException (Throwable cause)
 AuthenticationManagerException (String message, Throwable cause)

Detailed Description

Authentication manager exception.

Author:
Mathieu Peltier
Version:
1.0

Definition at line 35 of file AuthenticationManagerException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.controller.authentication.AuthenticationManagerException.AuthenticationManagerException  ) 
 

Creates a new AuthenticationManagerException instance.

Definition at line 40 of file AuthenticationManagerException.java.

00041   {
00042   }

org.objectweb.cjdbc.controller.authentication.AuthenticationManagerException.AuthenticationManagerException String  message  ) 
 

Creates a new AuthenticationManagerException instance.

Parameters:
message the error message

Definition at line 49 of file AuthenticationManagerException.java.

00050   {
00051     super(message);
00052   }

org.objectweb.cjdbc.controller.authentication.AuthenticationManagerException.AuthenticationManagerException Throwable  cause  ) 
 

Creates a new AuthenticationManagerException instance.

Parameters:
cause the root cause

Definition at line 59 of file AuthenticationManagerException.java.

00060   {
00061     super(cause);
00062   }

org.objectweb.cjdbc.controller.authentication.AuthenticationManagerException.AuthenticationManagerException String  message,
Throwable  cause
 

Creates a new AuthenticationManagerException instance.

Parameters:
message the error message
cause the root cause

Definition at line 70 of file AuthenticationManagerException.java.

00071   {
00072     super(message, cause);
00073   }


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