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

org.objectweb.cjdbc.console.text.ConsoleException Class Reference

List of all members.

Public Member Functions

 ConsoleException ()
 ConsoleException (String message)
 ConsoleException (Throwable cause)
 ConsoleException (String message, Throwable cause)

Detailed Description

Console helper exception.

Author:
Mathieu Peltier
Version:
1.0

Definition at line 35 of file ConsoleException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.console.text.ConsoleException.ConsoleException  ) 
 

Creates a new ConsoleException instance.

Definition at line 40 of file ConsoleException.java.

00041   {
00042   }

org.objectweb.cjdbc.console.text.ConsoleException.ConsoleException String  message  ) 
 

Creates a new ConsoleException instance.

Parameters:
message the error message

Definition at line 49 of file ConsoleException.java.

00050   {
00051     super(message);
00052   }

org.objectweb.cjdbc.console.text.ConsoleException.ConsoleException Throwable  cause  ) 
 

Creates a new ConsoleException instance.

Parameters:
cause the root cause

Definition at line 59 of file ConsoleException.java.

00060   {
00061     super(cause);
00062   }

org.objectweb.cjdbc.console.text.ConsoleException.ConsoleException String  message,
Throwable  cause
 

Creates a new ControllerException instance.

Parameters:
message the error message
cause the root cause

Definition at line 70 of file ConsoleException.java.

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


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