org.apache.log4j.config
public class: PropertySetterException [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.log4j.config.PropertySetterException
All Implemented Interfaces:
Serializable
Thrown when an error is encountered whilst attempting to set a property
using the
PropertySetter utility class.
- author:
Anders - Kristensen
- since:
1.1 -
| Field Summary |
|---|
| protected Throwable | rootCause | |
| Method from org.apache.log4j.config.PropertySetterException Summary: |
|---|
|
getMessage |
| Methods from java.lang.Throwable: |
|---|
|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Method from org.apache.log4j.config.PropertySetterException Detail: |
public String getMessage() {
String msg = super.getMessage();
if (msg == null && rootCause != null) {
msg = rootCause.getMessage();
}
return msg;
}
Returns descriptive text on the cause of this exception. |