Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Exceptions/
Upload File :
Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Exceptions/AIModelNotFoundException.php

<?php

declare(strict_types=1);

namespace App\Exceptions;

use RuntimeException;

final class AIModelNotFoundException extends RuntimeException
{
    public static function forModel(string $model): self
    {
        return new self(sprintf('AI model not found: %s', $model));
    }
}