Dhii/exception-interface

View on GitHub
src/OutOfBoundsExceptionInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Dhii\Exception;

/**
 * Represents an exception that signals that a value is requested from a set that does not have the value.
 *
 * @since 0.2
 */
interface OutOfBoundsExceptionInterface extends BadSubjectExceptionInterface
{
}