PluginProbe
Metricool – Social media and site statistics / trunk
Metricool – Social media and site statistics vtrunk
2.1.0 2.0.2 2.0.1 2.0.0 1.27 trunk
metricool / app / Features / UserSettings / Exceptions / StorageNotFoundException.php

StorageNotFoundException.php in Metricool – Social media and site statistics trunk, at app/Features/UserSettings/Exceptions/StorageNotFoundException.php

17 lines 333 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 declare(strict_types=1);
4
5 namespace Metricool\Features\UserSettings\Exceptions;
6
7 /**
8 * Is thrown when a storageName cannot be found in the initialized storages
9 */
10 class StorageNotFoundException extends \RuntimeException
11 {
12 public function __construct(string $message)
13 {
14 parent::__construct($message);
15 }
16 }
17