Package org.apache.ignite.lang
Class TableNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.ignite.lang.IgniteException
org.apache.ignite.lang.TableNotFoundException
- All Implemented Interfaces:
Serializable
,TraceableException
Exception is thrown when a specified table cannot be found.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTableNotFoundException
(UUID traceId, int code, String message, @Nullable Throwable cause) Creates an exception with the given trace ID, error code, detailed message, and cause.TableNotFoundException
(QualifiedName tableName) Creates an exception with the given table name.TableNotFoundException
(QualifiedName tableName, @Nullable Throwable cause) Creates an exception with the given table 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
-
TableNotFoundException
Creates an exception with the given table name.- Parameters:
tableName
- Table name.
-
TableNotFoundException
Creates an exception with the given table name.- Parameters:
tableName
- Table name.cause
- Optional nested exception (can benull
).
-
TableNotFoundException
public TableNotFoundException(UUID traceId, int code, String message, @Nullable @Nullable Throwable cause) Creates an exception with the given trace ID, error code, detailed message, and cause.- Parameters:
traceId
- Unique identifier of the exception.code
- Full error code.message
- Detailed message.cause
- Optional nested exception (can benull
).
-