]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - application/bookmark/exception/NotWritableDataStoreException.php
95f34b505fdfcd028bf90c004a0f72c7ec5f0640
[github/shaarli/Shaarli.git] / application / bookmark / exception / NotWritableDataStoreException.php
1 <?php
2
3
4 namespace Shaarli\Bookmark\Exception;
5
6
7 class NotWritableDataStoreException extends \Exception
8 {
9 /**
10 * NotReadableDataStore constructor.
11 *
12 * @param string $dataStore file path
13 */
14 public function __construct($dataStore)
15 {
16 $this->message = 'Couldn\'t load data from the data store file "'. $dataStore .'". '.
17 'Your data might be corrupted, or your file isn\'t readable.';
18 }
19 }