17 lines
359 B
PHP
17 lines
359 B
PHP
<?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.';
|
|
}
|
|
}
|