aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/bookmark/exception/LinkNotFoundException.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/bookmark/exception/LinkNotFoundException.php')
-rw-r--r--application/bookmark/exception/LinkNotFoundException.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/application/bookmark/exception/LinkNotFoundException.php b/application/bookmark/exception/LinkNotFoundException.php
deleted file mode 100644
index f9414428..00000000
--- a/application/bookmark/exception/LinkNotFoundException.php
+++ /dev/null
@@ -1,15 +0,0 @@
1<?php
2namespace Shaarli\Bookmark\Exception;
3
4use Exception;
5
6class LinkNotFoundException extends Exception
7{
8 /**
9 * LinkNotFoundException constructor.
10 */
11 public function __construct()
12 {
13 $this->message = t('The link you are trying to reach does not exist or has been deleted.');
14 }
15}