16 lines
320 B
PHP
16 lines
320 B
PHP
<?php
|
|
|
|
namespace Shaarli\Bookmark\Exception;
|
|
|
|
use Exception;
|
|
|
|
class BookmarkNotFoundException extends Exception
|
|
{
|
|
/**
|
|
* LinkNotFoundException constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->message = t('The link you are trying to reach does not exist or has been deleted.');
|
|
}
|
|
}
|