Skip to content

Commit

Permalink
[DX] improve file loader error for router/other resources in bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
cordoval committed Apr 17, 2015
1 parent 8584bfc commit a2deb61
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -36,7 +36,8 @@ public function __construct($resource, $sourceResource = null, $code = null, $pr
if ('@' === $resource[0]) {
$parts = explode(DIRECTORY_SEPARATOR, $resource);
$bundle = substr($parts[0], 1);
$message .= ' '.sprintf('Make sure the "%s" bundle is correctly registered and loaded in the application kernel class.', $bundle);
$message .= sprintf(' Make sure the "%s" bundle is correctly registered and loaded in the application kernel class.', $bundle);
$message .= sprintf(' If the bundle is registered, make sure the bundle path "%s" is not empty.', $resource);
} elseif ($previous) {
// include the previous exception, to help the user see what might be the underlying cause
$message .= ' '.sprintf('(%s)', $previous->getMessage());
Expand Down

0 comments on commit a2deb61

Please sign in to comment.