15 lines
326 B
PHP
15 lines
326 B
PHP
|
<?php
|
||
|
|
||
|
namespace Shaarli\Bookmark\Exception;
|
||
|
|
||
|
class InvalidWritableDataException extends \Exception
|
||
|
{
|
||
|
/**
|
||
|
* InvalidWritableDataException constructor.
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
$this->message = 'Couldn\'t generate bookmark data to store in the datastore. Skipping file writing.';
|
||
|
}
|
||
|
}
|