2018-12-03 01:22:45 +01:00
|
|
|
<?php
|
|
|
|
namespace Shaarli\Bookmark\Exception;
|
|
|
|
|
|
|
|
use Exception;
|
|
|
|
|
2019-05-25 15:46:47 +02:00
|
|
|
class BookmarkNotFoundException extends Exception
|
2018-12-03 01:22:45 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* LinkNotFoundException constructor.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->message = t('The link you are trying to reach does not exist or has been deleted.');
|
|
|
|
}
|
|
|
|
}
|