Skip to content

Commit

Permalink
[FLINK-3449] createInput() no longer swallows exception
Browse files Browse the repository at this point in the history
This closes apache#1675
  • Loading branch information
supermegaciaccount authored and rmetzger committed Feb 26, 2016
1 parent 0fb6e0d commit 725f746
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ public <X> DataSource<X> createInput(InputFormat<X, ?> inputFormat) {
catch (Exception e) {
throw new InvalidProgramException("The type returned by the input format could not be automatically determined. " +
"Please specify the TypeInformation of the produced type explicitly by using the " +
"'createInput(InputFormat, TypeInformation)' method instead.");
"'createInput(InputFormat, TypeInformation)' method instead.", e);
}
}

Expand Down

0 comments on commit 725f746

Please sign in to comment.