Package org.gridgain.ml
Class ModelNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.ignite.lang.IgniteException
org.gridgain.ml.ModelNotFoundException
- All Implemented Interfaces:
Serializable,TraceableException
Exception thrown when a model is not found.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionModelNotFoundException(String modelPath) Creates a new ModelNotFoundException with the specified model path.ModelNotFoundException(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
-
ModelNotFoundException
Creates a new ModelNotFoundException with the specified model path.- Parameters:
modelPath- The model Path that was not found
-
ModelNotFoundException
public ModelNotFoundException(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
-