]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/config/exception/PluginConfigOrderException.php
Shaarli's translation
[github/shaarli/Shaarli.git] / application / config / exception / PluginConfigOrderException.php
CommitLineData
e6cd773f
A
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 {
12266213 15 $this->message = t('An error occurred while trying to save plugins loading order.');
e6cd773f
A
16 }
17}