Class InvalidStateException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.netflix.genie.agent.execution.exceptions.InvalidStateException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidStateException extends java.lang.RuntimeException
Unchecked exception thrown in case a state action is executed with an unexpected state.- Since:
- 4.0.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidStateException(java.lang.String message)
Constructor with message.InvalidStateException(java.lang.String message, java.lang.Throwable cause)
Constructor with message and cause.
-
-
-
Constructor Detail
-
InvalidStateException
public InvalidStateException(java.lang.String message)
Constructor with message.- Parameters:
message
- a message
-
InvalidStateException
public InvalidStateException(java.lang.String message, java.lang.Throwable cause)
Constructor with message and cause.- Parameters:
message
- a messagecause
- a cause
-
-