[Yaml][Parser] changes according review

This commit is contained in:
Maksim Kotlyar 2012-01-13 17:48:38 +02:00
parent efce640a5e
commit 7961014140

View File

@ -49,10 +49,7 @@ class Yaml
// if input is a file, process it
if (strpos($input, "\n") === false && is_file($input)) {
if (false === is_readable($input)) {
throw new \InvalidArgumentException(sprintf(
'The service file "%s" is not readable.',
$input
));
throw new ParseException(sprintf('Unable to parse "%s" as the file is not readable.', $input));
}
$file = $input;