diff --git a/lib/ActionFactory.php b/lib/ActionFactory.php index 8146e542..46e28c5e 100644 --- a/lib/ActionFactory.php +++ b/lib/ActionFactory.php @@ -24,7 +24,7 @@ class ActionFactory extends FactoryAbstract { $filePath = $this->buildFilePath($name); if(!file_exists($filePath)) { - throw new \Exception('File ' . $filePath . ' does not exist!'); + throw new \Exception('Action ' . $name . ' does not exist!'); } require_once $filePath;