public class LoggerException
extends java.lang.RuntimeException
| Constructor and Description |
|---|
LoggerException()
Initialized a new object of Constructs Logger Exception with default values.
|
LoggerException(java.lang.String strMessage)
Initialized a new object of LoggerException with the specified detail message
|
LoggerException(java.lang.String strMessage,
java.lang.Throwable cause)
Initialized a new object of LoggerException with the specified detail message and cause
|
LoggerException(java.lang.Throwable cause)
This constructor is useful for exceptions that are little more than wrappers for other throwables
|
public LoggerException()
public LoggerException(java.lang.String strMessage,
java.lang.Throwable cause)
strMessage - the detail message.cause - the cause (which is saved for later retrieval by the Throwable.getCause() method).
(A null value is permitted, and indicates that the cause is nonexistent or unknown.)public LoggerException(java.lang.String strMessage)
strMessage - the detail message.public LoggerException(java.lang.Throwable cause)
cause - the cause (which is saved for later retrieval by the Throwable.getCause() method).
(A null value is permitted, and indicates that the cause is nonexistent or unknown.)