public class LogException
extends java.lang.Exception
Constructor and Description |
---|
LogException()
Construct a log exception with no information.
|
LogException(java.lang.String msg)
Construct a log exception with an error message.
|
LogException(java.lang.String msg,
java.lang.Throwable cause)
Construct a log exception with an error message and an underlying cause.
|
LogException(java.lang.Throwable cause)
Construct a log exception that was caused by another exception.
|
public LogException()
public LogException(java.lang.String msg)
msg
- The error message.public LogException(java.lang.Throwable cause)
cause
- The cause of this exception.public LogException(java.lang.String msg, java.lang.Throwable cause)
msg
- The error message.cause
- The cause of this exception.