Package org.apache.xbean.propertyeditor
Class PropertyEditorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.xbean.propertyeditor.PropertyEditorException
- All Implemented Interfaces:
Serializable
An exception for property editor conversion problems.
- Version:
- $Rev: 6680 $
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a PropertyException.PropertyEditorException
(String message) A PropertyEditorException with just an error message.PropertyEditorException
(String message, Throwable cause) An exception with both a message and an internal exception.PropertyEditorException
(Throwable cause) PropertyEditorException with a wrappered inner exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PropertyEditorException
public PropertyEditorException()Default constructor for a PropertyException. -
PropertyEditorException
PropertyEditorException with a wrappered inner exception.- Parameters:
cause
- Original root cause of the PropertyEditorException.
-
PropertyEditorException
A PropertyEditorException with just an error message.- Parameters:
message
- The text error message describing the condition.
-
PropertyEditorException
An exception with both a message and an internal exception.- Parameters:
message
- The test error message.cause
- The root cause for the exception.
-