org.jboss.util.property
Class PropertyException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.jboss.util.NestedRuntimeException (src) 
                  extended byorg.jboss.util.property.PropertyException
All Implemented Interfaces:
NestedThrowable (src) , java.io.Serializable

public class PropertyException
extends NestedRuntimeException (src)

This exception is thrown to indicate a non-fatal problem with the property system.

See Also:
Serialized Form

Nested Class Summary
 
Nested classes inherited from class org.jboss.util.NestedThrowable (src)
NestedThrowable.Util (src)
 
Field Summary
 
Fields inherited from class org.jboss.util.NestedRuntimeException (src)
nested
 
Fields inherited from interface org.jboss.util.NestedThrowable (src)
DETECT_DUPLICATE_NESTING, NESTED_TRACE_ENABLED, PARENT_TRACE_ENABLED
 
Constructor Summary
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.
 
Methods inherited from class org.jboss.util.NestedRuntimeException (src)
getCause, getMessage, getNested, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

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.