Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Raphael
histream
Commits
587f2dfe
Commit
587f2dfe
authored
Oct 07, 2016
by
R.W.Majeed
Browse files
more informative exception for unparsable date
parent
851d7f98
Changes
1
Hide whitespace changes
Inline
Side-by-side
histream-import/src/main/java/de/sekmi/histream/etl/config/DateTimeColumn.java
View file @
587f2dfe
...
...
@@ -60,7 +60,7 @@ public class DateTimeColumn extends Column<DateTimeAccuracy>{
try
{
return
DateTimeAccuracy
.
parse
(
formatter
,
input
);
}
catch
(
DateTimeParseException
e
){
throw
new
ParseException
(
"Unable to parse date
:
"
+
input
,
e
);
throw
new
ParseException
(
"Unable to parse date
'
"
+
input
+
"' in column '"
+
this
.
column
+
"'"
,
e
);
}
}
}
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment