MyShaarli/application/bookmark/exception/InvalidWritableDataExceptio...

15 lines
326 B
PHP
Raw Normal View History

2023-05-24 11:35:15 +02:00
<?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.';
}
}