]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - application/FileUtils.php
Merge pull request #1698 from ArthurHoaro/feature/plugins-search-filter
[github/shaarli/Shaarli.git] / application / FileUtils.php
diff --git a/application/FileUtils.php b/application/FileUtils.php
deleted file mode 100644 (file)
index 6a12ef0..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-/**
- * Exception class thrown when a filesystem access failure happens
- */
-class IOException extends Exception
-{
-    private $path;
-
-    /**
-     * Construct a new IOException
-     *
-     * @param string $path path to the ressource that cannot be accessed
-     */
-    public function __construct($path)
-    {
-        $this->path = $path;
-        $this->message = 'Error accessing '.$this->path;
-    }
-}