Files
SkinbaseNova/app/Services/AiBiography/VisionLlmException.php
2026-04-18 17:02:56 +02:00

15 lines
229 B
PHP

<?php
declare(strict_types=1);
namespace App\Services\AiBiography;
use RuntimeException;
/**
* Thrown when the Vision LLM gateway returns a structured failure.
*/
final class VisionLlmException extends RuntimeException
{
}