Package org.apache.uima.search
Class IndexingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.uima.UIMAException
org.apache.uima.search.IndexingException
- All Implemented Interfaces:
Serializable
,I18nExceptionI
Thrown by the Index to indicate that a failure has occurred during indexing.
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Message key for a standard UIMA exception message: The semantic search index at "{0}" was built with a UIMA version prior to v2.0.static final String
Message key for a standard UIMA exception message: Invalid attributes in build item {0}: The combination [{1}] is not allowed.static final String
Message key for a standard UIMA exception message: Invalid filter expression: Invalid escape sequence {0}.static final String
Message key for a standard UIMA exception message: Invalid filter expression: Expected a digit but found {0}.static final String
Message key for a standard UIMA exception message: Invalid filter expression: Expected a digit or '.' but found {0}.static final String
Message key for a standard UIMA exception message: Invalid filter expression: Expected the end of the expression but found {0}.static final String
Message key for a standard UIMA exception message: Invalid filter expression: Expected a string or number but found '{0}'.static final String
Message key for a standard UIMA exception message: Invalid filter expression: Expected operator but found {0}.static final String
Message key for a standard UIMA exception message: Invalid filter expression: '{0}' cannot start a feature name.static final String
Message key for a standard UIMA exception message: Invalid filter expression: The operator {0} cannot be applied to strings.static final String
Message key for a standard UIMA exception message: Invalid filter expression: Unterminated String: {0}.static final String
Message key for a standard UIMA exception message: Feature {0} referenced in build item {1} is not known.static final String
Message key for a standard UIMA exception message: The filter syntax {0} is not supported by this implementation.Fields inherited from class org.apache.uima.UIMAException
STANDARD_MESSAGE_CATALOG
-
Constructor Summary
ConstructorDescriptionCreates a new exception with a null message.IndexingException
(String aMessageKey, Object[] aArguments) Creates a new exception with a message from theUIMAException.STANDARD_MESSAGE_CATALOG
.IndexingException
(String aMessageKey, Object[] aArguments, Throwable aCause) Creates a new exception with the specified cause and a message from theUIMAException.STANDARD_MESSAGE_CATALOG
.IndexingException
(String aResourceBundleName, String aMessageKey, Object[] aArguments) Creates a new exception with a the specified message.IndexingException
(String aResourceBundleName, String aMessageKey, Object[] aArguments, Throwable aCause) Creates a new exception with the specified message and cause.IndexingException
(Throwable aCause) Creates a new exception with the specified cause and a null message. -
Method Summary
Methods inherited from class org.apache.uima.UIMAException
getArguments, getCause, getLocalizedMessage, getMessage, getMessageKey, getResourceBundleName, initCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.apache.uima.I18nExceptionI
getLocalizedMessage, hasMessageKey
-
Field Details
-
UNSUPPORTED_FILTER_SYNTAX
Message key for a standard UIMA exception message: The filter syntax {0} is not supported by this implementation.- See Also:
-
INVALID_FILTER_FEATURE_NAME
Message key for a standard UIMA exception message: Invalid filter expression: '{0}' cannot start a feature name.- See Also:
-
INVALID_FILTER_EXPECTED_LITERAL
Message key for a standard UIMA exception message: Invalid filter expression: Expected a string or number but found '{0}'.- See Also:
-
INVALID_FILTER_ESCAPE
Message key for a standard UIMA exception message: Invalid filter expression: Invalid escape sequence {0}.- See Also:
-
INVALID_FILTER_EXPECTED_DIGIT_OR_POINT
Message key for a standard UIMA exception message: Invalid filter expression: Expected a digit or '.' but found {0}.- See Also:
-
INVALID_FILTER_EXPECTED_DIGIT
Message key for a standard UIMA exception message: Invalid filter expression: Expected a digit but found {0}.- See Also:
-
INVALID_FILTER_EXPECTED_END
Message key for a standard UIMA exception message: Invalid filter expression: Expected the end of the expression but found {0}.- See Also:
-
INVALID_FILTER_UNTERMINATED_STRING
Message key for a standard UIMA exception message: Invalid filter expression: Unterminated String: {0}.- See Also:
-
INVALID_FILTER_EXPECTED_OPERATOR
Message key for a standard UIMA exception message: Invalid filter expression: Expected operator but found {0}.- See Also:
-
INVALID_FILTER_STRING_OPERATOR
Message key for a standard UIMA exception message: Invalid filter expression: The operator {0} cannot be applied to strings.- See Also:
-
UNKNOWN_FEATURE_IN_BUILD_ITEM
Message key for a standard UIMA exception message: Feature {0} referenced in build item {1} is not known.- See Also:
-
INVALID_ATTRIBUTE_COMBINATION_IN_BUILD_ITEM
Message key for a standard UIMA exception message: Invalid attributes in build item {0}: The combination [{1}] is not allowed.- See Also:
-
INCOMPATIBLE_INDEX_VERSION
Message key for a standard UIMA exception message: The semantic search index at "{0}" was built with a UIMA version prior to v2.0. This index format is no longer supported. You will need to delete your index and reindex your content.- See Also:
-
-
Constructor Details
-
IndexingException
public IndexingException()Creates a new exception with a null message. -
IndexingException
Creates a new exception with the specified cause and a null message.- Parameters:
aCause
- the original exception that caused this exception to be thrown, if any
-
IndexingException
Creates a new exception with a the specified message.- Parameters:
aResourceBundleName
- the base name of the resource bundle in which the message for this exception is located.aMessageKey
- an identifier that maps to the message for this exception. The message may contain placeholders for arguments as defined by theMessageFormat
class.aArguments
- The arguments to the message.null
may be used if the message has no arguments.
-
IndexingException
public IndexingException(String aResourceBundleName, String aMessageKey, Object[] aArguments, Throwable aCause) Creates a new exception with the specified message and cause.- Parameters:
aResourceBundleName
- the base name of the resource bundle in which the message for this exception is located.aMessageKey
- an identifier that maps to the message for this exception. The message may contain placeholders for arguments as defined by theMessageFormat
class.aArguments
- The arguments to the message.null
may be used if the message has no arguments.aCause
- the original exception that caused this exception to be thrown, if any
-
IndexingException
Creates a new exception with a message from theUIMAException.STANDARD_MESSAGE_CATALOG
.- Parameters:
aMessageKey
- an identifier that maps to the message for this exception. The message may contain placeholders for arguments as defined by theMessageFormat
class.aArguments
- The arguments to the message.null
may be used if the message has no arguments.
-
IndexingException
Creates a new exception with the specified cause and a message from theUIMAException.STANDARD_MESSAGE_CATALOG
.- Parameters:
aMessageKey
- an identifier that maps to the message for this exception. The message may contain placeholders for arguments as defined by theMessageFormat
class.aArguments
- The arguments to the message.null
may be used if the message has no arguments.aCause
- the original exception that caused this exception to be thrown, if any
-