aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/config/exception/PluginConfigOrderException.php
blob: f9d68750030a9226f53a9b74058fa358fee2252d (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 = 'An error occurred while trying to save plugins loading order.';
    }
}