diff --git a/lib/Service/Importer/BoardImportCommandService.php b/lib/Service/Importer/BoardImportCommandService.php index 7be2877d8..9cf3b3839 100644 --- a/lib/Service/Importer/BoardImportCommandService.php +++ b/lib/Service/Importer/BoardImportCommandService.php @@ -84,7 +84,7 @@ protected function validateConfig(): void { 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) {