fedora.server.errors
Class ResourceIndexException
java.lang.Object
java.lang.Throwable
java.lang.Exception
fedora.server.errors.ServerException
fedora.server.errors.ResourceIndexException
- All Implemented Interfaces:
- java.io.Serializable
- Direct Known Subclasses:
- UnsupportedQueryLanguageException
public class ResourceIndexException
- extends ServerException
- Author:
- eddie
- See Also:
- Serialized Form
|
Constructor Summary |
ResourceIndexException(java.lang.String message)
Creates a ResourceIndexException. |
ResourceIndexException(java.lang.String bundleName,
java.lang.String code,
java.lang.String[] values,
java.lang.String[] details,
java.lang.Throwable cause)
|
ResourceIndexException(java.lang.String message,
java.lang.Throwable cause)
|
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ResourceIndexException
public ResourceIndexException(java.lang.String message)
- Creates a ResourceIndexException.
- Parameters:
message - An informative message explaining what happened and
(possibly) how to fix it.
ResourceIndexException
public ResourceIndexException(java.lang.String message,
java.lang.Throwable cause)
ResourceIndexException
public ResourceIndexException(java.lang.String bundleName,
java.lang.String code,
java.lang.String[] values,
java.lang.String[] details,
java.lang.Throwable cause)
- Parameters:
bundleName - The bundle in which the message resides.code - The identifier for the message in the bundle, aka the key.values - Replacements for placeholders in the message, where
placeholders are of the form {num} where num starts at 0,
indicating the 0th (1st) item in this array.details - Identifiers for messages which provide detail on the
error. This may empty or null.cause - The underlying exception if known, null meaning unknown or
none.