Clarify config file not found exception message

Signed-off-by: Jim Madge <jmadge@turing.ac.uk>
This commit is contained in:
Jim Madge 2024-03-31 13:41:22 +01:00 коммит произвёл backportbot[bot]
Родитель 28b6fbf7b4
Коммит 59dedc9d9a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -84,7 +84,7 @@ class BoardImportCommandService extends BoardImportService {
if (is_string($config)) {
if (!is_file($config)) {
throw new NotFoundException('It\'s not a valid config file.');
throw new NotFoundException('Config file not found.');
}
$config = json_decode(file_get_contents($config));
if (!$config instanceof \stdClass) {