Package org.gridgain.ml
Class InferenceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.ignite.lang.IgniteException
org.gridgain.ml.InferenceException
- All Implemented Interfaces:
Serializable,TraceableException
Base exception class for all inference-related exceptions.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInferenceException(String message) Creates a new InferenceException with the specified message.InferenceException(String message, Throwable cause) Creates a new InferenceException with the specified message and cause.InferenceException(Throwable cause) Creates a new InferenceException with the cause.InferenceException(UUID traceId, int code, String message, @Nullable Throwable cause) Creates an inference exception with all parameters. -
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
-
InferenceException
Creates a new InferenceException with the specified message.- Parameters:
message- The exception message
-
InferenceException
Creates a new InferenceException with the specified message and cause.- Parameters:
message- The exception messagecause- The exception cause
-
InferenceException
Creates a new InferenceException with the cause.- Parameters:
cause- The exception cause
-
InferenceException
public InferenceException(UUID traceId, int code, String message, @Nullable @Nullable Throwable cause) Creates an inference exception with all parameters.- Parameters:
traceId- The unique trace Idcode- The error codemessage- The exception messagecause- The exception cause
-