Package org.wildfly.plugin.tools
Class OperationExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.wildfly.plugin.tools.OperationExecutionException
- All Implemented Interfaces:
Serializable
An error indicating an operation has failed to execute.
- Author:
- James R. Perkins
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionOperationExecutionException
(String message, Throwable cause) Creates a new exception with the failure message from the result.OperationExecutionException
(String message, org.jboss.as.controller.client.Operation operation, org.jboss.dmr.ModelNode result) Creates a new exception with the failure message from the result.OperationExecutionException
(String message, org.jboss.dmr.ModelNode operation, org.jboss.dmr.ModelNode result) Creates a new exception with the failure message from the result.OperationExecutionException
(org.jboss.as.controller.client.Operation operation, org.jboss.dmr.ModelNode result) Creates a new exception with the failure message from the result.OperationExecutionException
(org.jboss.dmr.ModelNode operation, org.jboss.dmr.ModelNode result) Creates a new exception with the failure message from the result. -
Method Summary
Modifier and TypeMethodDescriptionorg.jboss.dmr.ModelNode
Returns the result from the operation executed.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
OperationExecutionException
public OperationExecutionException(org.jboss.as.controller.client.Operation operation, org.jboss.dmr.ModelNode result) Creates a new exception with the failure message from the result.- Parameters:
operation
- the operation which failedresult
- the result of the operation
-
OperationExecutionException
public OperationExecutionException(org.jboss.dmr.ModelNode operation, org.jboss.dmr.ModelNode result) Creates a new exception with the failure message from the result.- Parameters:
operation
- the operation which failedresult
- the result of the operation
-
OperationExecutionException
public OperationExecutionException(String message, org.jboss.as.controller.client.Operation operation, org.jboss.dmr.ModelNode result) Creates a new exception with the failure message from the result.- Parameters:
message
- the message to prepend to the failure messageoperation
- the operation which failedresult
- the result of the operation
-
OperationExecutionException
public OperationExecutionException(String message, org.jboss.dmr.ModelNode operation, org.jboss.dmr.ModelNode result) Creates a new exception with the failure message from the result.- Parameters:
message
- the message to prepend to the failure messageoperation
- the operation which failedresult
- the result of the operation
-
OperationExecutionException
Creates a new exception with the failure message from the result.- Parameters:
message
- the message to prepend to the failure messagecause
- the cause of the error
-
-
Method Details
-
getExecutionResult
public org.jboss.dmr.ModelNode getExecutionResult()Returns the result from the operation executed.- Returns:
- the result of the operation
-