diff --git a/library/Hasql/Errors.hs b/library/Hasql/Errors.hs index c7fe084..0e8dd34 100644 --- a/library/Hasql/Errors.hs +++ b/library/Hasql/Errors.hs @@ -84,7 +84,7 @@ instance Exception SessionError where <> maybe "" (\h -> "\n Hint: " <> BC.unpack h) hint UnexpectedResult message -> "Unexpected result: " <> show message RowError row column rowError -> - "Row error: " <> show row <> ":" <> show column <> " " <> show rowError + "Error in row " <> show row <> ", column " <> show column <> ": " <> show rowError UnexpectedAmountOfRows amount -> "Unexpected amount of rows: " <> show amount