Class FlinkException

    • Constructor Detail

      • FlinkException

        public FlinkException​(String message)
        Creates a new Exception with the given message and null as the cause.
        Parameters:
        message - The exception message
      • FlinkException

        public FlinkException​(Throwable cause)
        Creates a new exception with a null message and the given cause.
        Parameters:
        cause - The exception that caused this exception
      • FlinkException

        public FlinkException​(String message,
                              Throwable cause)
        Creates a new exception with the given message and cause.
        Parameters:
        message - The exception message
        cause - The exception that caused this exception