R6API/Client

View on GitHub
src/Exception/InvalidArgumentException.php

Summary

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

namespace R6API\Client\Exception;

/**
 * Exception for invalid arguments provided to the API client.
 *
 * @author Baptiste Leduc <baptiste.leduc@gmail.com>
 */
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{
}