R6API/Client

View on GitHub
src/Exception/UnauthorizedHttpException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
declare(strict_types=1);

namespace R6API\Client\Exception;

/**
 * Exception thrown when it is an unauthorized request exception (401).
 *
 * @author Baptiste Leduc <baptiste.leduc@gmail.com>
 */
class UnauthorizedHttpException extends ClientErrorHttpException
{
}