Package org.jclouds.compute
Class RunScriptOnNodesException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.jclouds.compute.RunScriptOnNodesException
-
- All Implemented Interfaces:
Serializable
public class RunScriptOnNodesException extends Exception
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RunScriptOnNodesException(Statement runScript, RunScriptOptions options, Map<NodeMetadata,ExecResponse> successfulNodes, Map<?,Exception> executionExceptions, Map<? extends NodeMetadata,? extends Throwable> failedNodes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<?,? extends Throwable>
getExecutionErrors()
Map<? extends NodeMetadata,? extends Throwable>
getNodeErrors()
RunScriptOptions
getOptions()
Statement
getRunScript()
Map<NodeMetadata,ExecResponse>
getSuccessfulNodes()
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
RunScriptOnNodesException
public RunScriptOnNodesException(Statement runScript, @Nullable RunScriptOptions options, Map<NodeMetadata,ExecResponse> successfulNodes, Map<?,Exception> executionExceptions, Map<? extends NodeMetadata,? extends Throwable> failedNodes)
-
-
Method Detail
-
getSuccessfulNodes
public Map<NodeMetadata,ExecResponse> getSuccessfulNodes()
- Returns:
- Nodes that performed ssh without error
-
getExecutionErrors
public Map<?,? extends Throwable> getExecutionErrors()
- Returns:
- Nodes that performed startup without error, but incurred problems applying options
-
getNodeErrors
public Map<? extends NodeMetadata,? extends Throwable> getNodeErrors()
- Returns:
- Nodes that performed startup without error, but incurred problems applying options
-
getRunScript
public Statement getRunScript()
-
getOptions
public RunScriptOptions getOptions()
-
-