Package org.apache.ignite.table.criteria
Class CriteriaException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.ignite.lang.IgniteException
org.apache.ignite.table.criteria.CriteriaException
- All Implemented Interfaces:
Serializable
,TraceableException
Criteria exception base class.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCriteriaException
(int code) Creates an exception with the given error code.CriteriaException
(int code, String message) Creates an exception with the given error code and detailed message.CriteriaException
(int code, String message, @Nullable Throwable cause) Creates an exception with the given error code, detailed message, and cause.CriteriaException
(int code, Throwable cause) Creates an exception with the given error code and cause.CriteriaException
(UUID traceId, int code) Creates an exception with the given trace ID and error code.CriteriaException
(UUID traceId, int code, String message) Creates an exception with the given trace ID, error code, and detailed message.CriteriaException
(UUID traceId, int code, String message, @Nullable Throwable cause) Creates an exception with the given trace ID, error code, detailed message, and cause.CriteriaException
(UUID traceId, int code, Throwable cause) Creates an exception with the given trace ID, error code, and cause. -
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
-
CriteriaException
public CriteriaException(int code) Creates an exception with the given error code.- Parameters:
code
- Full error code.
-
CriteriaException
Creates an exception with the given trace ID and error code.- Parameters:
traceId
- Unique identifier of the exception.code
- Full error code.
-
CriteriaException
Creates an exception with the given error code and detailed message.- Parameters:
code
- Full error code.message
- Detailed message.
-
CriteriaException
Creates an exception with the given trace ID, error code, and detailed message.- Parameters:
traceId
- Unique identifier of this exception.code
- Full error code.message
- Detailed message.
-
CriteriaException
Creates an exception with the given error code and cause.- Parameters:
code
- Full error code.cause
- Optional nested exception (can benull
).
-
CriteriaException
Creates an exception with the given trace ID, error code, and cause.- Parameters:
traceId
- Unique identifier of the exception.code
- Full error code.cause
- Optional nested exception (can benull
).
-
CriteriaException
Creates an exception with the given error code, detailed message, and cause.- Parameters:
code
- Full error code.message
- Detailed message.cause
- Optional nested exception (can benull
).
-
CriteriaException
public CriteriaException(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
).
-