Skip to content

Commit

Permalink
improve devloper facing error message (#45626)
Browse files Browse the repository at this point in the history
  • Loading branch information
timacdonald authored Jan 13, 2023
1 parent 60c177b commit 12f572f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SQLiteDatabaseDoesNotExistException.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class SQLiteDatabaseDoesNotExistException extends InvalidArgumentException
*/
public function __construct($path)
{
parent::__construct("Database ({$path}) does not exist.");
parent::__construct("Database file at path [{$path}] does not exist. Ensure this is an absolute path to the database.");

$this->path = $path;
}
Expand Down

0 comments on commit 12f572f

Please sign in to comment.