aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/exceptions/IOException.php
blob: 2aa25e5c55be709b4dfeb2c8c1451ef437597a40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
namespace Shaarli\Exceptions;

use Exception;

/**
 * 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 resource that cannot be accessed
     * @param string $message Custom exception message.
     */
    public function __construct($path, $message = '')
    {
        $this->path = $path;
        $this->message = empty($message) ? t('Error accessing') : $message;
        $this->message .= ' "' . $this->path . '"';
    }
}