BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
openai-php
/
client
/
src
/
Exceptions
📤 Upload
📝 New File
📁 New Folder
Close
Editing: UnserializableResponse.php
<?php declare(strict_types=1); namespace OpenAI\Exceptions; use Exception; use JsonException; final class UnserializableResponse extends Exception { /** * Creates a new Exception instance. */ public function __construct(JsonException $exception) { parent::__construct($exception->getMessage(), 0, $exception); } }
Save
Cancel