Files
plexphp/src/Models/Errors/GetMediaMetaDataUnauthorizedThrowable.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;
}
}