Skip to content

Commit

Permalink
Improve error message
Browse files Browse the repository at this point in the history
  • Loading branch information
samdark committed Aug 31, 2021
1 parent 9ba1ac3 commit 1045eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exception/NotFoundException.php
Expand Up @@ -25,7 +25,7 @@ public function __construct(string $id, array $buildStack = [])
$message = sprintf('%s while building %s', $last, implode(' -> ', $buildStack));
}

parent::__construct(sprintf('No definition or class found for %s.', $message));
parent::__construct(sprintf('No definition or class found or resolvable for %s.', $message));
}

public function getId(): string
Expand Down

0 comments on commit 1045eed

Please sign in to comment.