Package org.apache.ignite.lang
Class UnsupportedPartitionTypeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.ignite.lang.IgniteException
org.apache.ignite.lang.UnsupportedPartitionTypeException
- All Implemented Interfaces:
Serializable,TraceableException
This exception is thrown when a table does not support the specified partition type.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUnsupportedPartitionTypeException(String message) Creates a new exception with the given message.UnsupportedPartitionTypeException(UUID traceId, int code, String message, @Nullable Throwable cause) Creates a new exception with the given trace id, error code, detail message and cause. -
Method Summary
Methods inherited from class org.apache.ignite.lang.IgniteException
code, codeAsString, errorCode, groupCode, groupName, toString, traceIdMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
UnsupportedPartitionTypeException
Creates a new exception with the given message.- Parameters:
message- Exception message.
-
UnsupportedPartitionTypeException
public UnsupportedPartitionTypeException(UUID traceId, int code, String message, @Nullable @Nullable Throwable cause) Creates a new exception with the given trace id, error code, detail message and cause.- Parameters:
traceId- Unique identifier of this exception.code- Full error code.message- Detail message.cause- Optional nested exception (can benull).
-