aboutsummaryrefslogblamecommitdiffhomepage
path: root/application/bookmark/exception/BookmarkNotFoundException.php
blob: 827a3d358ae98fb0adc15cf482ff06567bbd54ab (plain) (tree)
1
2
3
4
5
6




                                     
                                                 








                                                                                                   
<?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.');
    }
}