aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/bookmark/exception/BookmarkNotFoundException.php
blob: a91d1efaa8572859b3e47a97f9d18d476ee86985 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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.');
    }
}