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, 15 insertions, 0 deletions
diff --git a/application/bookmark/exception/LinkNotFoundException.php b/application/bookmark/exception/LinkNotFoundException.php
new file mode 100644
index 00000000..f9414428
--- /dev/null
+++ b/application/bookmark/exception/LinkNotFoundException.php
@@ -0,0 +1,15 @@
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}