com.bea.netuix.application.exception
Class IllegalDependencyException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.bea.netuix.application.exception.NetuixException
              extended by com.bea.netuix.application.exception.IllegalDependencyException
All Implemented Interfaces
Serializable

public class IllegalDependencyException
extends NetuixException

This exception is thrown when customizing a portal would cause a recursive dependency. A typical example of this exception would be attempting to add a page, book, etc. to itself.

See Also
Serialized Form

Constructor Summary
IllegalDependencyException()
          Constructs a IllegalDependencyException with no specified detail message.
IllegalDependencyException(String s)
          Constructs a IllegalDependencyException with the specified detail message.
IllegalDependencyException(String s, Throwable cause)
          Constructs a IllegalDependencyException with the specified detail message and causal exception.
IllegalDependencyException(Throwable cause)
          Constructs a IllegalDependencyException with the specified causal exception.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IllegalDependencyException

public IllegalDependencyException()
Constructs a IllegalDependencyException with no specified detail message.


IllegalDependencyException

public IllegalDependencyException(String s)
Constructs a IllegalDependencyException with the specified detail message.

Parameters
s - The detail message

IllegalDependencyException

public IllegalDependencyException(String s,
                                  Throwable cause)
Constructs a IllegalDependencyException with the specified detail message and causal exception.

Parameters
s - The detail message
cause - The exception that caused this exception to be thrown

IllegalDependencyException

public IllegalDependencyException(Throwable cause)
Constructs a IllegalDependencyException with the specified causal exception.

Parameters
cause - The exception that caused this exception to be thrown


Copyright © 2011, Oracle. All rights reserved.