mirror of
https://github.com/LukeHagar/plexphp.git
synced 2025-12-06 04:20:51 +00:00
20 lines
492 B
PHP
20 lines
492 B
PHP
<?php
|
|
|
|
/**
|
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace LukeHagar\Plex_API\Models\Errors;
|
|
|
|
class GetMediaMetaDataUnauthorizedThrowable extends \RuntimeException
|
|
{
|
|
public GetMediaMetaDataUnauthorized $container;
|
|
|
|
public function __construct(string $message, int $statusCode, GetMediaMetaDataUnauthorized $container)
|
|
{
|
|
parent::__construct($message, $statusCode);
|
|
$this->container = $container;
|
|
}
|
|
} |