PREV CLASS
NEXT CLASS
com.ibm.portal.resolver.exceptions
Class EntityDeletedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.ibm.portal.resolver.exceptions.ResolutionException
com.ibm.portal.resolver.exceptions.EntityNotFoundException
com.ibm.portal.resolver.exceptions.EntityDeletedException
- All Implemented Interfaces:
- Localized, LocalizedStatus, Constants, java.io.Serializable
- Direct Known Subclasses:
- ResourceDeletedException
-
public abstract class EntityDeletedException
- extends EntityNotFoundException
An entity was not found on the server because it has been deleted
- Since:
- 7.0
- See Also:
- Serialized Form
Method Summary
|
int |
getStatus()
Return as a hint to the client the recommended HTTP status code. |
java.lang.String |
getTitle(java.util.Locale aLocale)
Return the title of this object in the given locale. |
Methods inherited from class java.lang.Throwable
|
fillInStackTrace, getCause, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
EntityDeletedException
protected EntityDeletedException()
EntityDeletedException
protected EntityDeletedException(java.lang.Throwable th)
getStatus
public int getStatus()
- Description copied from class: ResolutionException
- Returns as a hint to the client the recommended HTTP status code.
Subclasses of this exception are advised to override this method to
provide for more refined error codes.
- Specified by:
- getStatus in interface LocalizedStatus
- Overrides:
- getStatus in class EntityNotFoundException
- Returns:
- HTTP status code
getTitle
public java.lang.String getTitle(java.util.Locale aLocale)
- Description copied from interface: Localized
- Returns the title of this object in the given locale.
- Specified by:
- getTitle in interface Localized
- Overrides:
- getTitle in class EntityNotFoundException
- Parameters:
- aLocale - the locale for which to retrieve the title, must not
be null.
- Returns:
- the title of this node in the given locale. If a title is not
available in the given locale, this method will return null.
It is up to the invoker of the method to implement an appropriate
fallback mechanism.
PREV CLASS
NEXT CLASS