Class AgentLaunchException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.netflix.genie.common.internal.exceptions.checked.GenieCheckedException
-
- com.netflix.genie.web.exceptions.checked.AgentLaunchException
-
- All Implemented Interfaces:
java.io.Serializable
public class AgentLaunchException extends GenieCheckedException
An exception for when the server can't launch an agent for whatever reason.- Since:
- 4.0.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AgentLaunchException()
Constructor.AgentLaunchException(java.lang.String message)
Constructor.AgentLaunchException(java.lang.String message, java.lang.Throwable cause)
Constructor.AgentLaunchException(java.lang.Throwable cause)
Constructor.
-
-
-
Constructor Detail
-
AgentLaunchException
public AgentLaunchException()
Constructor.
-
AgentLaunchException
public AgentLaunchException(java.lang.String message)
Constructor.- Parameters:
message
- The error message to associate with this exception
-
AgentLaunchException
public AgentLaunchException(java.lang.Throwable cause)
Constructor.- Parameters:
cause
- The root cause of this exception
-
AgentLaunchException
public AgentLaunchException(java.lang.String message, java.lang.Throwable cause)
Constructor.- Parameters:
message
- The error message to associate with this exceptioncause
- The root cause of this exception
-
-