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