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:
java.io.Serializable
public class PropertyEditorException extends java.lang.RuntimeException
An exception for property editor conversion problems.- Version:
- $Rev: 6680 $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PropertyEditorException()
Default constructor for a PropertyException.PropertyEditorException(java.lang.String message)
A PropertyEditorException with just an error message.PropertyEditorException(java.lang.String message, java.lang.Throwable cause)
An exception with both a message and an internal exception.PropertyEditorException(java.lang.Throwable cause)
PropertyEditorException with a wrappered inner exception.
-
-
-
Constructor Detail
-
PropertyEditorException
public PropertyEditorException()
Default constructor for a PropertyException.
-
PropertyEditorException
public PropertyEditorException(java.lang.Throwable cause)
PropertyEditorException with a wrappered inner exception.- Parameters:
cause
- Original root cause of the PropertyEditorException.
-
PropertyEditorException
public PropertyEditorException(java.lang.String message)
A PropertyEditorException with just an error message.- Parameters:
message
- The text error message describing the condition.
-
PropertyEditorException
public PropertyEditorException(java.lang.String message, java.lang.Throwable cause)
An exception with both a message and an internal exception.- Parameters:
message
- The test error message.cause
- The root cause for the exception.
-
-