Skip to content

Commit

Permalink
Fix #122, nested exception added
Browse files Browse the repository at this point in the history
  • Loading branch information
Nayjest committed Mar 14, 2016
1 parent 0298b9e commit d44bd03
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ObjectDataRow.php
Expand Up @@ -29,7 +29,9 @@ protected function extractCellValue($fieldName)
return $this->src->{$fieldName};
} catch(Exception $e) {
throw new RuntimeException(
"Can't read '$fieldName' property from DataRow"
"Can't read '$fieldName' property from DataRow",
0,
$e
);
}

Expand Down

0 comments on commit d44bd03

Please sign in to comment.