Skip to content

Commit

Permalink
Tweak exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
mattab committed Dec 10, 2014
1 parent c28f9d6 commit 4addd85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/DataTable/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function addTable($table)
public function getTable($idTable)
{
if (!isset($this->tables[$idTable])) {
throw new TableNotFoundException(sprintf("This report has been reprocessed since your last click. To see this error less often, please increase the timeout value in seconds in Settings > General Settings. (error: id %s not found).", $idTable));
throw new TableNotFoundException(sprintf("Error: table id %s not found in memory. (If this error is causing you problems in production, please report it in Piwik issue tracker.)", $idTable));
}

return $this->tables[$idTable];
Expand Down

0 comments on commit 4addd85

Please sign in to comment.