aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/config/exception/PluginConfigOrderException.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/config/exception/PluginConfigOrderException.php')
-rw-r--r--application/config/exception/PluginConfigOrderException.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/application/config/exception/PluginConfigOrderException.php b/application/config/exception/PluginConfigOrderException.php
new file mode 100644
index 00000000..f82ec26e
--- /dev/null
+++ b/application/config/exception/PluginConfigOrderException.php
@@ -0,0 +1,17 @@
1<?php
2
3namespace Shaarli\Config\Exception;
4
5/**
6 * Exception used if an error occur while saving plugin configuration.
7 */
8class PluginConfigOrderException extends \Exception
9{
10 /**
11 * Construct exception.
12 */
13 public function __construct()
14 {
15 $this->message = t('An error occurred while trying to save plugins loading order.');
16 }
17}