# metricool/trunk/app/Features/UserSettings/Exceptions/StorageNotFoundException.php

Metricool – Social media and site statistics, version trunk. 17 lines.

- Page: https://pluginprobe.com/plugins/metricool/trunk/code/app/Features/UserSettings/Exceptions/StorageNotFoundException.php
- Raw: https://pluginprobe.com/plugins/metricool/trunk/raw/app/Features/UserSettings/Exceptions/StorageNotFoundException.php
- Modified: 2026-08-20T14:08:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/metricool/trunk/code/app/Features/UserSettings/Exceptions/StorageNotFoundException.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace Metricool\Features\UserSettings\Exceptions;

/**
 * Is thrown when a storageName cannot be found in the initialized storages
 */
class StorageNotFoundException extends \RuntimeException
{
    public function __construct(string $message)
    {
        parent::__construct($message);
    }
}

```
