BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
app
/
Exceptions
📤 Upload
📝 New File
📁 New Folder
Close
Editing: 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)); } }
Save
Cancel