Class OperationExecutionException

    • Constructor Summary

      Constructors 
      Constructor Description
      OperationExecutionException​(char operator, java.util.List<java.lang.String> argTypes, java.lang.String msg)
      Creates an OperationExecutionException with the specified message.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static OperationExecutionException create​(char operator, java.util.List<AbstractType<?>> argTypes, java.lang.Exception e)
      Creates a new OperationExecutionException for the specified operation.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • OperationExecutionException

        public OperationExecutionException​(char operator,
                                           java.util.List<java.lang.String> argTypes,
                                           java.lang.String msg)
        Creates an OperationExecutionException with the specified message.
        Parameters:
        operator - the operator
        argTypes - the argument types
        msg - the error message
    • Method Detail

      • create

        public static OperationExecutionException create​(char operator,
                                                         java.util.List<AbstractType<?>> argTypes,
                                                         java.lang.Exception e)
        Creates a new OperationExecutionException for the specified operation.
        Parameters:
        operator - the operator
        argTypes - the argument types
        e - the original Exception
        Returns:
        a new OperationExecutionException for the specified operation