Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / config / Exception / FileLocatorFileNotFoundException.php
index 4d4a56dfc66a8c0c38e1c63db810ff6398d952eb..af764eb4718d8f7baede6f9eda64a611480ded38 100644 (file)
@@ -18,4 +18,17 @@ namespace Symfony\Component\Config\Exception;
  */
 class FileLocatorFileNotFoundException extends \InvalidArgumentException
 {
+    private $paths;
+
+    public function __construct($message = '', $code = 0, $previous = null, array $paths = array())
+    {
+        parent::__construct($message, $code, $previous);
+
+        $this->paths = $paths;
+    }
+
+    public function getPaths()
+    {
+        return $this->paths;
+    }
 }