Package ai.djl.serving.wlm.util
Class WlmShutdownException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ai.djl.serving.wlm.util.WlmException
-
- ai.djl.serving.wlm.util.WlmShutdownException
-
- All Implemented Interfaces:
java.io.Serializable
public class WlmShutdownException extends WlmException
Thrown when a job is run but all workers are shutdown.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WlmShutdownException(java.lang.String message)Constructs aWlmShutdownExceptionwith the specified detail message.WlmShutdownException(java.lang.String message, java.lang.Throwable cause)Constructs aWlmShutdownExceptionwith the specified detail message and cause.
-
-
-
Constructor Detail
-
WlmShutdownException
public WlmShutdownException(java.lang.String message)
Constructs aWlmShutdownExceptionwith the specified detail message.- Parameters:
message- The detail message (which is saved for later retrieval by theThrowable.getMessage()method)
-
WlmShutdownException
public WlmShutdownException(java.lang.String message, java.lang.Throwable cause)Constructs aWlmShutdownExceptionwith the specified detail message and cause.Note that the detail message associated with
causeis not automatically incorporated into this exception's detail message.- Parameters:
message- The detail message (which is saved for later retrieval by theThrowable.getMessage()method)cause- The cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-