fapi-cz/php-client

View on GitHub
src/Fapi/FapiClient/ArgumentOutOfRangeException.php

Summary

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

namespace Fapi\FapiClient;

use InvalidArgumentException;

/**
 * The exception that is thrown when the value of an argument is
 * outside the allowable range of values as defined by the invoked method.
 */
class ArgumentOutOfRangeException extends InvalidArgumentException
{

}