for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Sandro Keil (https://sandro-keil.de)
*
* @link http://github.com/sandrokeil/interop-config for the canonical source repository
* @copyright Copyright (c) 2015-2020 Sandro Keil
* @license http://github.com/sandrokeil/interop-config/blob/master/LICENSE.md New BSD License
*/
declare(strict_types = 1);
namespace Interop\Config\Exception;
use OutOfBoundsException as PhpOutOfBoundsException;
* OutOfBoundsException exception
* Use this exception if the code attempts to access an associative array, but performs a check for the key.
class OutOfBoundsException extends PhpOutOfBoundsException implements ExceptionInterface
{
}