aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/config/exception/PluginConfigOrderException.php
blob: f82ec26ed0d1a3bed7a19d9c5b9493e155f7362d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

namespace Shaarli\Config\Exception;

/**
 * Exception used if an error occur while saving plugin configuration.
 */
class PluginConfigOrderException extends \Exception
{
    /**
     * Construct exception.
     */
    public function __construct()
    {
        $this->message = t('An error occurred while trying to save plugins loading order.');
    }
}