PluginConfigOrderException.php 362 B

1234567891011121314151617
  1. <?php
  2. namespace Shaarli\Config\Exception;
  3. /**
  4. * Exception used if an error occur while saving plugin configuration.
  5. */
  6. class PluginConfigOrderException extends \Exception
  7. {
  8. /**
  9. * Construct exception.
  10. */
  11. public function __construct()
  12. {
  13. $this->message = t('An error occurred while trying to save plugins loading order.');
  14. }
  15. }