|
Copyright © 2000, 2008, Oracle and/or its affiliates. All rights reserved. | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception com.bea.netuix.application.exception.NetuixException com.bea.netuix.application.exception.ObjectInUseException
public class ObjectInUseException
This exception is thrown when an attempt to update or delete an object is requested
but the object is being used by an end user. An example would be trying to delete a
PortletDefinition
when end users are using PortletInstance
s
based off that definition.
Constructor Summary | |
---|---|
ObjectInUseException()
Constructs a ObjectInUseException with no specified detail message. |
|
ObjectInUseException(String s)
Constructs a ObjectInUseException with the specified detail message. |
|
ObjectInUseException(String s,
Throwable cause)
Constructs a ObjectInUseException with the specified detail message and causal exception. |
|
ObjectInUseException(Throwable cause)
Constructs a ObjectInUseException 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 |
---|
public ObjectInUseException()
ObjectInUseException
with no specified detail message.
public ObjectInUseException(String s)
ObjectInUseException
with the specified detail message.
s
- The detail messagepublic ObjectInUseException(String s, Throwable cause)
ObjectInUseException
with the specified detail message and causal exception.
s
- The detail messagecause
- The exception that caused this exception to be thrownpublic ObjectInUseException(Throwable cause)
ObjectInUseException
with the specified causal exception.
cause
- The exception that caused this exception to be thrown
|
Copyright © 2000, 2008, Oracle and/or its affiliates. All rights reserved. | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |