Package org.apache.flink.runtime.operators.chaining

Examples of org.apache.flink.runtime.operators.chaining.ExceptionInChainedStubException


   */
  public static void logAndThrowException(Exception ex, AbstractInvokable parent) throws Exception {
    String taskName;
    if (ex instanceof ExceptionInChainedStubException) {
      do {
        ExceptionInChainedStubException cex = (ExceptionInChainedStubException) ex;
        taskName = cex.getTaskName();
        ex = cex.getWrappedException();
      } while (ex instanceof ExceptionInChainedStubException);
    } else {
      taskName = parent.getEnvironment().getTaskName();
    }

View Full Code Here

TOP

Related Classes of org.apache.flink.runtime.operators.chaining.ExceptionInChainedStubException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.