Package org.jboss.util.property
Class PropertyException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.jboss.util.NestedRuntimeException
-
- org.jboss.util.property.PropertyException
-
- All Implemented Interfaces:
java.io.Serializable
,NestedThrowable
public class PropertyException extends NestedRuntimeException
This exception is thrown to indicate a non-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.NestedRuntimeException
nested
-
Fields inherited from interface org.jboss.util.NestedThrowable
DETECT_DUPLICATE_NESTING, NESTED_TRACE_ENABLED, PARENT_TRACE_ENABLED
-
-
Constructor Summary
Constructors Constructor Description PropertyException()
Construct a PropertyException with no detail.PropertyException(java.lang.String msg)
Construct a PropertyException with the specified detail message.PropertyException(java.lang.String msg, java.lang.Throwable nested)
Construct a PropertyException with the specified detail message and nested Throwable.PropertyException(java.lang.Throwable nested)
Construct a PropertyException with the specified nested Throwable.
-
Method Summary
-
Methods inherited from class org.jboss.util.NestedRuntimeException
getCause, getMessage, getNested, printStackTrace, printStackTrace, printStackTrace
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
The serialVersionUID- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PropertyException
public PropertyException(java.lang.String msg)
Construct a PropertyException with the specified detail message.- Parameters:
msg
- Detail message.
-
PropertyException
public PropertyException(java.lang.String msg, java.lang.Throwable nested)
Construct a PropertyException with the specified detail message and nested Throwable.- Parameters:
msg
- Detail message.nested
- Nested Throwable.
-
PropertyException
public PropertyException(java.lang.Throwable nested)
Construct a PropertyException with the specified nested Throwable.- Parameters:
nested
- Nested Throwable.
-
PropertyException
public PropertyException()
Construct a PropertyException with no detail.
-
-