Package org.jclouds.compute
Class RunNodesException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.jclouds.compute.RunNodesException
-
- All Implemented Interfaces:
Serializable
public class RunNodesException extends Exception
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RunNodesException(String group, int count, Template template, Set<? extends NodeMetadata> successfulNodes, Map<?,Exception> executionExceptions, Map<? extends NodeMetadata,? extends Throwable> failedNodes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCount()
Map<?,? extends Throwable>
getExecutionErrors()
String
getGroup()
Map<? extends NodeMetadata,? extends Throwable>
getNodeErrors()
Set<? extends NodeMetadata>
getSuccessfulNodes()
Template
getTemplate()
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
RunNodesException
public RunNodesException(String group, int count, Template template, Set<? extends NodeMetadata> successfulNodes, Map<?,Exception> executionExceptions, Map<? extends NodeMetadata,? extends Throwable> failedNodes)
-
-
Method Detail
-
getSuccessfulNodes
public Set<? extends NodeMetadata> getSuccessfulNodes()
- Returns:
- Nodes that performed startup 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
-
getGroup
public String getGroup()
-
getCount
public int getCount()
-
getTemplate
public Template getTemplate()
-
-