View file upload/engine/classes/composer/vendor/async-aws/core/src/Exception/Http/ServerException.php
<?php
declare(strict_types=1);
namespace AsyncAws\Core\Exception\Http;
use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
/**
* Represents a 5xx response.
*
* @author Nicolas Grekas <p@tchwork.com>
*/
class ServerException extends \RuntimeException implements HttpException, ServerExceptionInterface
{
use HttpExceptionTrait;
}