| |
|
| java.lang.Object java.lang.Throwable java.lang.Error javolution.JavolutionError
JavolutionError | final public class JavolutionError extends Error (Code) | | Signals that a serious problem (bug ?!) has been detected
within the library.
author: Jean-Marie Dautelle version: 1.0, September 14, 2004 |
Constructor Summary | |
public | JavolutionError(String message) Creates an error message with the specified message
and cause. | public | JavolutionError(String message, Throwable cause) Creates an error message with the specified message
and cause. | public | JavolutionError(Throwable cause) Creates an error message with the specified cause
The cause stack trace is printed to the current error
stream (System.err). |
JavolutionError | public JavolutionError(String message)(Code) | | Creates an error message with the specified message
and cause.
Parameters: message - the detail message. |
JavolutionError | public JavolutionError(String message, Throwable cause)(Code) | | Creates an error message with the specified message
and cause. The cause stack trace is printed to the
current error stream (System.err).
Parameters: message - the detailed message. Parameters: cause - the cause of this error. |
JavolutionError | public JavolutionError(Throwable cause)(Code) | | Creates an error message with the specified cause
The cause stack trace is printed to the current error
stream (System.err).
Parameters: cause - the cause of this error. |
|
|
|