Package org.apache.ignite.lang
Class IndexNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.ignite.lang.IgniteException
org.apache.ignite.lang.IndexNotFoundException
- All Implemented Interfaces:
Serializable
,TraceableException
Exception is thrown when the specified index is not found.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionIndexNotFoundException
(UUID traceId, int code, String message, Throwable cause) Creates a new exception with the given trace ID, error code, detailed message, and cause.IndexNotFoundException
(UUID traceId, String message, Throwable cause) Creates an exception with the given trace ID, error code, detailed message, and cause.IndexNotFoundException
(QualifiedName indexName) Creates an exception with the given index name. -
Method Summary
Methods inherited from class org.apache.ignite.lang.IgniteException
code, codeAsString, errorCode, groupCode, groupName, toString, traceId
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
IndexNotFoundException
Creates an exception with the given index name.- Parameters:
indexName
- Index name.
-
IndexNotFoundException
Creates an exception with the given trace ID, error code, detailed message, and cause.- Parameters:
traceId
- Unique identifier of this exception.message
- Detail message.cause
- Optional nested exception (can benull
).
-
IndexNotFoundException
Creates a new exception with the given trace ID, error code, detailed message, and cause.- Parameters:
traceId
- Unique identifier of this exception.code
- Full error code.message
- Detail message.cause
- Optional nested exception (can benull
).
-