org.jboss.util.property
Class PropertyError

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Error
          extended byorg.jboss.util.NestedError (src) 
              extended byorg.jboss.util.property.PropertyError
All Implemented Interfaces:
NestedThrowable (src) , java.io.Serializable

public class PropertyError
extends NestedError (src)

Thrown to indicate a 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.NestedError (src)
nested
 
Fields inherited from interface org.jboss.util.NestedThrowable (src)
DETECT_DUPLICATE_NESTING, NESTED_TRACE_ENABLED, PARENT_TRACE_ENABLED
 
Constructor Summary
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.
 
Methods inherited from class org.jboss.util.NestedError (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

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.