관리-도구
편집 파일: PresetNotFoundException.php
<?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); } }