Package org.jboss.util.property
Class PropertyError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- org.jboss.util.NestedError
-
- org.jboss.util.property.PropertyError
-
- All Implemented Interfaces:
java.io.Serializable
,NestedThrowable
public class PropertyError extends NestedError
Thrown to indicate a fatal problem with the property system.- Version:
- $Revision$
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jboss.util.NestedThrowable
NestedThrowable.Util
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
The serialVersionUID-
Fields inherited from class org.jboss.util.NestedError
nested
-
Fields inherited from interface org.jboss.util.NestedThrowable
DETECT_DUPLICATE_NESTING, NESTED_TRACE_ENABLED, PARENT_TRACE_ENABLED
-
-
Constructor Summary
Constructors Constructor Description PropertyError()
Construct a PropertyError with no detail.PropertyError(java.lang.String msg)
Construct a PropertyError with the specified detail message.PropertyError(java.lang.String msg, java.lang.Throwable nested)
Construct a PropertyError with the specified detail message and nested Throwable.PropertyError(java.lang.Throwable nested)
Construct a PropertyError with the specified nested Throwable.
-
Method Summary
-
Methods inherited from class org.jboss.util.NestedError
getCause, getMessage, getNested, printStackTrace, printStackTrace, printStackTrace
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
The serialVersionUID- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PropertyError
public PropertyError(java.lang.String msg)
Construct a PropertyError with the specified detail message.- Parameters:
msg
- Detail message.
-
PropertyError
public PropertyError(java.lang.String msg, java.lang.Throwable nested)
Construct a PropertyError with the specified detail message and nested Throwable.- Parameters:
msg
- Detail message.nested
- Nested Throwable.
-
PropertyError
public PropertyError(java.lang.Throwable nested)
Construct a PropertyError with the specified nested Throwable.- Parameters:
nested
- Nested Throwable.
-
PropertyError
public PropertyError()
Construct a PropertyError with no detail.
-
-