Class OperationExecutionException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.wildfly.plugin.tools.OperationExecutionException
All Implemented Interfaces:
Serializable

public class OperationExecutionException extends RuntimeException
An error indicating an operation has failed to execute.
Author:
James R. Perkins
See Also:
  • 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 failed
      result - 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 failed
      result - 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 message
      operation - the operation which failed
      result - 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 message
      operation - the operation which failed
      result - the result of the operation
    • OperationExecutionException

      public OperationExecutionException(String message, Throwable cause)
      Creates a new exception with the failure message from the result.
      Parameters:
      message - the message to prepend to the failure message
      cause - 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