📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 10:10:01
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
php-flasher
/
flasher
/
Exception
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/php-flasher/flasher/Exception
🔄 Refresh
✏️
Editing: PresetNotFoundException.php
Writable
<?php declare(strict_types=1); namespace Flasher\Prime\Exception; final class PresetNotFoundException extends \Exception { /** * @param string $preset the name of the preset that was not found * @param string[] $availablePresets the list of available presets for reference */ public static function create(string $preset, array $availablePresets = []): self { $message = \sprintf('Preset "%s" not found, did you forget to register it?', $preset); if ([] !== $availablePresets) { $message .= \sprintf(' Available presets: "%s"', implode('", "', $availablePresets)); } return new self($message); } }
💾 Save Changes
❌ Cancel